@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Digital Savanna Palette */
    --bg-obsidian: #05070A;
    --bg-obsidian-soft: #0C1117;
    --accent-sky: #38BDF8;
    --accent-sky-glow: rgba(56, 189, 248, 0.15);

    /* Pricing Palette */
    --starter-navy: #1E293B;
    --standard-burgundy: #7F1D1D;
    --pro-gold: #B45309;

    /* Text */
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Layout */
    --container-max: 1200px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    /* Animation */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-obsidian);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

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

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 0;
    max-width: var(--container-max);
    margin: 0 auto;
}

.pricing-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
    max-width: 380px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

/* Starter Card */
.pricing-card.starter {
    border-color: rgba(30, 41, 59, 0.3);
}

.pricing-card.starter::before {
    background: var(--starter-navy);
}

.pricing-card.starter .price-value {
    color: var(--starter-navy);
}


.pricing-card.standard::before {
    background: var(--standard-burgundy);
}

.pricing-card.standard .price-value {
    color: #ef4444;
    /* Brighter red for readability on dark */
}

/* Pro Card */
.pricing-card.pro {
    border-color: rgba(180, 83, 9, 0.3);
}

.pricing-card.pro::before {
    background: var(--pro-gold);
}

.pricing-card.pro .price-value {
    color: #f59e0b;
    /* Brighter gold for readability on dark */
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-card .ideal {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-card li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-card li::before {
    content: '→';
    color: var(--accent-sky);
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-sky {
    background: var(--accent-sky);
    color: var(--bg-obsidian);
}

.btn-sky:hover {
    background: #7DD3FC;
    transform: scale(1.05);
}

.btn:hover {
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}


/* Sections */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--accent-sky));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.75)),
        url('Assets/Hero.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    pointer-events: none;
    top: 0;
    left: 0;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-accent {
    color: var(--accent-sky);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 800px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-cta-secondary {
    border-radius: var(--radius-sm);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.pricing-hero {
    padding-top: 150px;
    padding-bottom: 50px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), var(--bg-obsidian));
}

.pricing-hero .hero-content h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
}

.blog-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.blog-hero-large {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.blog-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.blog-hero-title-large {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.blog-hero-subtitle-centered {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.blog-content-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-card {
    padding: 3rem;
}

.blog-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.blog-heading {
    margin: 2rem 0 1rem;
    color: var(--accent-sky);
}

.blog-paragraph {
    margin-bottom: 1.5rem;
}

.blog-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    text-align: left;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-sky);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Insights Section */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.insight-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.insight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.insight-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-link {
    color: var(--accent-sky);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-link:hover {
    text-decoration: underline;
}

/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-grid img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.vision-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.vision-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Fat Footer */
.site-footer {
    padding: 5rem 0 2rem;
    background: #0F172A;
    border-top: 1px solid #B45309;
    color: var(--text-secondary);
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent-sky);
    padding-left: 5px;
}

.footer-brand img {
    width: 60px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact i {
    width: 20px;
    color: var(--accent-sky);
    margin-right: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.footer-social a {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.footer-social a:hover {
    color: var(--accent-sky);
    transform: translateY(-3px);
    padding-left: 0;
}

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


/* Form Styles */
.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-sky);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
    background: var(--accent-sky);
    color: var(--bg-obsidian);
    border: none;
    width: 100%;
    margin-top: 1rem;
    font-size: 1rem;
}

.btn-submit:hover {
    background: var(--bg-obsidian);
    color: var(--accent-sky);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    border: 1px solid var(--accent-sky);
}

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

.btn-pulse {
    animation: pulse 3s infinite;
}

/* Header & Nav Improvements */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-radius: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-img {
    width: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
}

.brand-title-text {
    display: block;
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
}

.brand-tag-text {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-sky);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

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

.btn-nav {
    padding: 0.5rem 1.5rem;
}

.nav-toggle-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-sky);
}

/* Contact Section Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-info-card i {
    font-size: 1.5rem;
}

.contact-form-card {
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

.hosting-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}

.cta-card {
    padding: 4rem;
}

.cta-card p {
    margin-bottom: 2rem;
}

/* Pricing Grid Enhancements */
.pricing-card-featured {
    transform: scale(1.05);
    z-index: 2;
    border-color: rgba(127, 29, 29, 0.4) !important;
}

.price-starter {
    color: #94A3B8;
}

.price-standard {
    color: #EF4444;
}

.price-pro {
    color: #F59E0B;
}

.btn-starter {
    border-color: var(--starter-navy) !important;
}

.btn-standard {
    background: var(--standard-burgundy) !important;
    color: #fff !important;
}

.btn-pro {
    border-color: var(--pro-gold) !important;
}

.contact-icon-sky {
    color: var(--accent-sky);
}

.contact-icon-whatsapp {
    color: #25D366;
}

.mt-4 {
    margin-top: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--accent-sky);
}

.social-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--accent-sky);
    transform: translateY(-3px);
}

.contact-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

/* Why Section Redesign */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.why-card i {
    font-size: 2.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    color: #fff;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Force the select box and its options to use the Deep Obsidian palette */
select,
select option {
    background-color: #0F172A !important;
    /* Deep Obsidian background */
    color: #FFFFFF !important;
    /* Pure white text */
}

/* Optional: Clean up the selection highlight behavior */
select:focus {
    border-color: #38BDF8 !important;
    /* Sky Blue focus border */
    outline: none;
}

/* Footer Contact Fix */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.footer-contact i {
    width: 24px;
    text-align: center;
    margin-right: 0;
}

#back-to-top {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;       /* Forces it to the left side */
  right: auto !important;      /* Actively kills any 'right' alignments hanging around */
  z-index: 999 !important;
}