/* Luxury Black & Golden Gradient Styling for Marqvera */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
    color: #f5f5f5;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #B8860B 0%, #FFD700 50%, #B8860B 100%) 1;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

header h1 {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 25%, #FFED4E 50%, #D4AF37 75%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

/* Navigation Menu Styles */
.main-nav {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #B8860B 0%, #FFD700 50%, #B8860B 100%) 1;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav a {
    color: #d4af37;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FDB931);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.main-nav a:hover::after {
    width: 80%;
}

.main-nav a.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
}

.main-nav a.active::after {
    width: 80%;
}

header p {
    font-size: 1.3rem;
    color: #D4AF37;
    font-style: italic;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* What is Marqvera Section */
.what-is-marqvera {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.98) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.what-is-marqvera::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 20%, #FDB931 50%, #FFD700 80%, transparent 100%);
    animation: shimmerLine 3s infinite;
}

@keyframes shimmerLine {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.intro-container {
    padding: 4rem 3rem;
}

.section-title-large {
    font-size: 3rem;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 25%, #FFED4E 50%, #D4AF37 75%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.15rem;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 3rem;
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.intro-highlight {
    font-size: 1.4rem;
    color: #FFD700;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 2;
    letter-spacing: 0.05rem;
}

.intro-text p {
    font-size: 1.15rem;
    color: #e0e0e0;
    line-height: 2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #b0b0b0;
    letter-spacing: 0.08rem;
}

/* Section Styles */
section {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
}

section h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.15rem;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);
    border-radius: 2px;
}

section h3 {
    font-size: 1.8rem;
    color: #FDB931;
    margin: 2rem 0 1rem;
    letter-spacing: 0.1rem;
}

section h4 {
    font-size: 1.5rem;
    color: #D4AF37;
    margin: 1.5rem 0 1rem;
}

/* Dashboard Content Divs */
section>div {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

section>div:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #e0e0e0;
    font-size: 1.1rem;
}

ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 0.8rem;
}

/* Social Platforms Showcase */
.social-platforms-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.social-platforms-container h3 {
    text-align: center;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 2.5rem;
    letter-spacing: 0.12rem;
}

.platforms-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.platform-box {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.platform-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-box:hover::before {
    opacity: 1;
}

.platform-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.platform-icon-large {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.platform-icon-large svg {
    width: 40px;
    height: 40px;
    transition: transform 0.4s ease;
}

.platform-box:hover .platform-icon-large {
    transform: rotate(360deg) scale(1.1);
}

.platform-box:hover .platform-icon-large svg {
    transform: scale(1.2);
}

/* Instagram */
.instagram-box:hover {
    border-color: #e1306c;
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.5);
}

.instagram-box .platform-icon-large {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.instagram-box .platform-icon-large svg {
    color: white;
}

/* YouTube */
.youtube-box:hover {
    border-color: #FF0000;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
}

.youtube-box .platform-icon-large {
    background: #FF0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.youtube-box .platform-icon-large svg {
    color: white;
}

/* Facebook */
.facebook-box:hover {
    border-color: #1877f2;
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.5);
}

.facebook-box .platform-icon-large {
    background: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.facebook-box .platform-icon-large svg {
    color: white;
}

/* Twitter/X */
.twitter-box:hover {
    border-color: #1DA1F2;
    box-shadow: 0 15px 40px rgba(29, 161, 242, 0.5);
}

.twitter-box .platform-icon-large {
    background: #000000;
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
    border: 2px solid #1DA1F2;
}

.twitter-box .platform-icon-large svg {
    color: #1DA1F2;
}

/* LinkedIn */
.linkedin-box:hover {
    border-color: #0077b5;
    box-shadow: 0 15px 40px rgba(0, 119, 181, 0.5);
}

.linkedin-box .platform-icon-large {
    background: #0077b5;
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.linkedin-box .platform-icon-large svg {
    color: white;
}

/* TikTok */
.tiktok-box:hover {
    border-color: #00f2ea;
    box-shadow: 0 15px 40px rgba(0, 242, 234, 0.5);
}

.tiktok-box .platform-icon-large {
    background: #000000;
    box-shadow: 0 8px 20px rgba(0, 242, 234, 0.4);
    border: 2px solid #00f2ea;
}

.tiktok-box .platform-icon-large svg {
    color: #00f2ea;
}

.platform-box h4 {
    font-size: 1.4rem;
    color: #FFD700;
    margin: 1rem 0 0.5rem;
    letter-spacing: 0.08rem;
}

.platform-box p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
    letter-spacing: 0.05rem;
}

/* Industries We Serve Section */
.industries-section {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.industries-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 2rem;
    letter-spacing: 0.12rem;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tag {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
    cursor: default;
    text-transform: uppercase;
}

.industry-tag:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 237, 78, 0.2) 100%);
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Why Marqvera Section */
.why-marqvera-section {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.why-marqvera-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 2.5rem;
    letter-spacing: 0.12rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

.benefit-card h4 {
    font-size: 1.5rem;
    color: #FFD700;
    margin: 1rem 0 0.8rem;
    letter-spacing: 0.08rem;
}

.benefit-card p {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

/* Creative Process Section */
.process-section {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.process-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 2.5rem;
    letter-spacing: 0.12rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.process-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #FFD700;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.process-card:hover .step-number {
    opacity: 1;
}

.process-card h4 {
    font-size: 1.5rem;
    color: #FFD700;
    margin: 1rem 0 0.8rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.process-card p {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

/* Professional Pricing Section */
.pricing-section {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 4rem 3rem;
    margin-bottom: 2rem;
}

.pricing-section h3 {
    text-align: center;
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.12rem;
    font-weight: 700;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-style: italic;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 700px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}


.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.plan-name {
    font-size: 2.2rem;
    color: #FFD700;
    margin: 0;
    letter-spacing: 0.08rem;
    font-weight: 600;
}

.plan-badge {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
}

.plan-price {
    text-align: center;
    padding: 2.5rem 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 2.5rem;
}

.currency {
    font-size: 1.8rem;
    color: #D4AF37;
    vertical-align: super;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05rem;
}

.period {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-left: 0.3rem;
}

.price-strike {
    display: block;
    font-size: 1.3rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.discounted-price {
    margin-top: 0.5rem;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: #e0e0e0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    line-height: 1.6;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item.highlighted {
    color: #FFD700;
    font-weight: 600;
}

.feature-item.highlighted .feature-icon {
    font-size: 1.3rem;
}

.plan-button,
.plan-button.featured-button,
.plan-button.premium-button {
    width: 100%;
    padding: 1.3rem 2rem;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.8) 0%, rgba(212, 175, 55, 0.8) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-top: auto;
}

.plan-button:hover,
.plan-button.featured-button:hover,
.plan-button.premium-button:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    color: #000;
}

/* Query Section Styles */
.query-section {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
}

.query-container {
    max-width: 800px;
    margin: 0 auto;
}

.query-title {
    text-align: center;
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 1rem;
    letter-spacing: 0.12rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.query-subtitle {
    text-align: center;
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.query-form {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8) 0%, rgba(13, 13, 13, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 3rem 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #FFD700;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 224, 224, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    padding: 1.3rem 2rem;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.8) 0%, rgba(212, 175, 55, 0.8) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    color: #000;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    min-height: 20px;
}

/* Fade-in animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styles */
form>div {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #f5f5f5;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

button[type="submit"] {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFD700 0%, #FFED4E 50%, #FFD700 100%);
}

button[type="submit"]:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #B8860B 0%, #FFD700 50%, #B8860B 100%) 1;
    margin-top: 3rem;
    box-shadow: 0 -4px 30px rgba(212, 175, 55, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 2rem;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid #D4AF37;
}

.footer-left h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #D4AF37;
    font-size: 0.9rem;
    letter-spacing: 0.15rem;
    font-style: italic;
}

.footer-center h4,
.footer-right h4 {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.facebook {
    background: #1877f2;
    color: white;
}

.social-icon.linkedin {
    background: #0077b5;
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: #D4AF37;
    font-size: 0.95rem;
    letter-spacing: 0.08rem;
    margin: 0;
}

/* Strong/Bold Text */
strong {
    color: #FFD700;
    font-weight: 600;
}

/* Paragraph Spacing */
p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
        letter-spacing: 0.15rem;
    }

    header p {
        font-size: 1rem;
    }

    section {
        padding: 2rem 1.5rem;
    }

    section h2 {
        font-size: 2rem;
    }

    main {
        padding: 2rem 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .platforms-showcase {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
    }

    .platform-box {
        padding: 1.5rem 1rem;
    }

    .platform-icon-large {
        width: 60px;
        height: 60px;
    }

    .industries-tags {
        gap: 0.8rem;
    }

    .industry-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .what-is-marqvera .intro-container {
        padding: 2.5rem 1.5rem;
    }

    .section-title-large {
        font-size: 2.2rem;
    }

    .intro-highlight {
        font-size: 1.2rem;
    }

    .intro-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }

    .plan-name {
        font-size: 1.6rem;
    }

    .amount {
        font-size: 2.8rem;
    }

    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===================================
   HOME PAGE ANIMATIONS & EFFECTS
   =================================== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-line-1 {
    display: block;
    color: #fff;
    animation: fadeInDown 1s ease;
}

.hero-line-2 {
    display: block;
    animation: fadeInUp 1s ease 0.3s both;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(20deg);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.cta-primary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-primary:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-secondary:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #d4af37;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Animated Stats Section */
.stats-showcase {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #000 0%, #0d0d0d 100%);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-box:hover {
    border-color: #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.stat-box:hover .stat-icon {
    filter: grayscale(0%);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFD700;
    display: inline-block;
}

.stat-plus,
.stat-percent {
    font-size: 2rem;
    color: #d4af37;
    display: inline-block;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

/* Services Preview Section */
.services-preview {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #0d0d0d 0%, #000 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: #FFD700;
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
}

.service-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.service-card:hover .service-hover-overlay {
    transform: translateY(0);
}

.service-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Why Choose Section Timeline */
.why-choose-section {
    padding: 5rem 2rem;
    background: #000;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #FFD700, #d4af37);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
}

.timeline-item.visible {
    animation: fadeIn 0.6s forwards;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
    border: 4px solid #000;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
}

.timeline-content {
    width: 45%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    border-color: #FFD700;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.timeline-content h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #000 0%, #0d0d0d 100%);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    pointer-events: auto;
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #d4af37;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FFD700;
    transform: scale(1.3);
}

.dot:hover {
    background: #d4af37;
}

/* Platforms Marquee */
.platforms-section {
    padding: 3rem 0;
    background: #000;
    overflow: hidden;
}

.platforms-marquee {
    overflow: hidden;
    padding: 2rem 0;
}

.platforms-track {
    display: flex;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.platform-logo {
    flex: 0 0 200px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
    padding: 1rem 2rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.platform-logo:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    overflow: hidden;
}

.cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent);
    animation: gradientPulse 4s ease infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-large,
.cta-button-outline {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.cta-button-large {
    background: linear-gradient(135deg, #FFD700, #FDB931);
    color: #000;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.cta-button-large:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
}

.cta-button-outline {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-button-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

/* Utility Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
}

.fade-in-left.visible {
    animation: fadeInLeft 0.6s forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
}

.fade-in-right.visible {
    animation: fadeInRight 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles for Home Page */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
/* Pricing Page Note */
.pricing-note {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(253, 185, 49, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 2rem auto 3rem;
    max-width: 800px;
    text-align: center;
}

.pricing-note p {
    font-size: 1.2rem;
    color: #d4af37;
    margin: 0;
}

.pricing-note a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.pricing-note a:hover {
    color: #FDB931;
    border-bottom-color: #FDB931;
}


/* ===================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   =================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    /* Base Typography */
    body {
        font-size: 14px;
    }

    /* Header */
    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1rem;
    }

    /* Navigation */
    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
    }

    .main-nav a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    /* Hero Section */
    .hero-section {
        min-height: 80vh;
        padding: 2rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
    }

    /* Stats Section */
    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }

    .stat-icon {
        font-size: 2rem !important;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
    }

    /* Testimonials */
    .testimonials-carousel {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 1rem !important;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-left, .footer-center, .footer-right {
        width: 100%;
    }

    /* Pricing Cards */
    .pricing-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .pricing-note {
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .pricing-note p {
        font-size: 1rem;
    }

    /* About Page Stats */
    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    /* Benefits and Process */
    .benefits-grid, .process-steps {
        grid-template-columns: 1fr !important;
    }

    /* Platforms Grid */
    .platforms-showcase {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Industries Grid */
    .industries-grid {
        grid-template-columns: 1fr !important;
    }

    /* Contact Form */
    .query-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group {
        width: 100%;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    /* Header */
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 0.9rem;
    }

    /* Navigation - Stack vertically */
    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .main-nav a {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    /* Stats - Single column */
    .stats-container {
        grid-template-columns: 1fr !important;
    }

    .stat-box {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem !important;
    }

    /* Service Cards */
    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem !important;
    }

    /* Platforms - Single column */
    .platforms-showcase {
        grid-template-columns: 1fr !important;
    }

    /* Pricing Cards */
    .plan-price .amount {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-logo {
        max-width: 60px;
    }

    .footer-container h3 {
        font-size: 1.5rem;
    }

    .footer-container h4 {
        font-size: 1.1rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    /* Social Icons */
    .social-icon {
        width: 35px;
        height: 35px;
    }

    /* Contact Form */
    .query-form {
        padding: 1.5rem 1rem;
    }

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

    /* Ensure text doesn't overflow */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem !important;
    }

    .stat-number {
        font-size: 1.8rem !important;
    }

    .section-title {
        font-size: 1.3rem !important;
    }

    header h1 {
        font-size: 1.8rem;
    }

    .main-nav a {
        font-size: 0.85rem;
        padding: 0.6rem;
    }

    .pricing-card {
        padding: 1rem;
    }

    .plan-price .amount {
        font-size: 2rem;
    }
}

/* Landscape orientation fixes */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .stat-box:hover,
    .platform-box:hover {
        transform: none;
    }

    .cta-primary:hover,
    .cta-secondary:hover,
    .submit-btn:hover {
        transform: translateY(0);
    }

    /* Increase tap targets */
    .main-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    button, .submit-btn, .cta-primary, .cta-secondary {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }
}

