/* =========================================
   Ticyo Premium Theme
   Author: Ticyo Tech
   Description: High-performance, SEO-friendly CSS
   ========================================= */

/* Use CSS Variables for easy theming */
:root {
    /* Palette: #CCA566 (Gold), #59727F (Slate), #004C8C (Blue), #00264C (Navy), #FF8C00 (Orange) */
    --primary-color: #CCA566;
    /* Gold */
    --primary-dark: #b89255;
    --primary-light: rgba(204, 165, 102, 0.1);
    --primary-badge: rgba(204, 165, 102, 0.15);
    /* Slightly more visible for badges */
    /* Darker Gold */
    --secondary-color: #59727F;
    /* Slate */
    --accent-color: #FF8C00;
    /* Orange */

    --bg-color: #f8fafc;
    /* Light Plane (Slate 50) */
    --bg-surface: #ffffff;
    /* White Surface */
    --bg-surface-glass: rgba(255, 255, 255, 0.9);

    --text-main: #00264C;
    /* Navy Text */
    --text-muted: #59727F;
    /* Slate Text */

    --font-main: 'Outfit',
        sans-serif;

    --spacing-xs: 0.75rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;
    --spacing-xl: 10rem;

    --border-radius: 12px;
    /* Slightly tighter for professional look */
    --container-width: 1280px;
    /* Wider container for SaaS */

    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.05);
    /* Subtler shadows */
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.01);
    --shadow-glow: 0 0 20px rgba(204, 165, 102, 0.2);
    /* Softer gold glow */

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   Reset & Base
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* =========================================
   Utilities
   ========================================= */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Background Utilities */
.bg-light {
    background-color: #f8fafc;
}

.bg-soft {
    background-color: #f1f5f9;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gradient-tech {
    background: radial-gradient(circle at top right, rgba(204, 165, 102, 0.1), transparent),
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.text-secondary {
    color: var(--secondary-color);
}

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

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

.text-white {
    color: #ffffff;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

/* Spacing Utilities */
.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hero-description {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    color: var(--text-muted);
    margin: 0 auto 2.5rem;
    max-width: 800px;
    line-height: 1.6;
}

.center-actions {
    justify-content: center;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 9999px;
    /* Pill shape */
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 14px 0 rgba(204, 165, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
}

.btn-secondary:hover {
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* =========================================
   Header
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    max-height: 64px;
    width: auto;
    transition: var(--transition);
}

.logo-symbol {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
}



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

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

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--text-main);
}

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

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

/* =========================================
   Hero Section
   ========================================= */
.hero {
    padding-top: 180px;
    padding-bottom: var(--spacing-lg);
    background: radial-gradient(circle at 10% 20%, rgba(204, 165, 102, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 76, 140, 0.1) 0%, transparent 20%);
    min-height: 80vh;
    /* Reduced from 100vh for consistency with other heros */
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    gap: 1.5rem;
}

.badge {
    display: inline-block;
    background: rgba(204, 165, 102, 0.1);
    color: var(--primary-color);
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(204, 165, 102, 0.2);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Dashboard Mockup - CSS Construction */
.hero-visual {
    position: relative;
    height: 600px;
    width: 100%;
    perspective: 1000px;
}

.visual-card {
    background: #ffffff;
    border: 1px solid rgba(0, 38, 76, 0.08);
    border-radius: 12px;
    position: absolute;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Main Dashboard Window */
.card-1 {
    width: 90%;
    height: 400px;
    top: 50px;
    left: 5%;
    z-index: 10;
    transform: rotateX(5deg) rotateY(-5deg) rotateZ(1deg);
    /* Slight 3D tilt */
    display: flex;
    flex-direction: column;
}

.card-header {
    height: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    background: #f8fafc;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.5;
}

.red {
    background: #ef4444;
}

.yellow {
    background: #f59e0b;
}

.green {
    background: #22c55e;
}

.card-body {
    flex: 1;
    display: flex;
}

.card-sidebar {
    width: 60px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.sidebar-item {
    width: 32px;
    height: 8px;
    background: rgba(0, 38, 76, 0.1);
    border-radius: 4px;
}

.sidebar-item.active {
    background: var(--primary-color);
    width: 24px;
}

.card-main {
    flex: 1;
    padding: 2rem;
    position: relative;
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 150px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 5px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), rgba(204, 165, 102, 0.2));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.bar:nth-child(1) {
    height: 40%;
}

.bar:nth-child(2) {
    height: 70%;
}

.bar:nth-child(3) {
    height: 50%;
}

.bar:nth-child(4) {
    height: 90%;
}

.bar:nth-child(5) {
    height: 60%;
}

.card-2 {
    width: 240px;
    padding: 1.5rem;
    bottom: 80px;
    right: -20px;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--accent-color);
    animation: float 6s ease-in-out infinite;
}

.card-2 i {
    font-size: 2rem;
    color: var(--accent-color);
    background: rgba(255, 140, 0, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(204, 165, 102, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
   Brands
   ========================================= */
.brands {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brands-title {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.5;
}

.brand-item {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

/* =========================================
   Features
   ========================================= */
.section-padding {
    padding: var(--spacing-lg) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #00264C, #CCA566);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 38, 76, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

/* =========================================
   Tech Section
   ========================================= */
.tech-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.tech-list {
    margin: 2rem 0;
}

.tech-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tech-list li i {
    color: var(--secondary-color);
}

.code-block {
    background: #000;
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
    border: 1px solid #333;
    font-family: 'Fira Code', monospace;
}

pre {
    color: #a5b4fc;
    font-size: 0.9rem;
    overflow-x: auto;
}

.tag {
    color: #f472b6;
}

.attr {
    color: #a78bfa;
}

.val {
    color: #34d399;
}

.floating-badge {
    position: absolute;
    background: var(--bg-surface);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-1 {
    top: -15px;
    right: -15px;
    color: #22c55e;
}

.badge-2 {
    bottom: -15px;
    left: -15px;
    color: #38bdf8;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    padding: var(--spacing-lg) 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-color) 100%);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
}

.cta-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-size: 1rem;
    min-width: 250px;
}

.cta-form button {
    background: #fff;
    color: var(--primary-color);
}

.cta-form button:hover {
    background: #f8fafc;
    color: var(--primary-dark);
}

.cta-note {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--bg-surface);
    padding: 4rem 0 2rem;
    margin-top: var(--spacing-lg);
}

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

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 1rem;
}

.brand-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

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

.social-links a {
    font-size: 1.5rem;
    color: var(--text-muted);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

.pricing-card {
    background: var(--bg-surface);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 38, 76, 0.1);
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #22c55e;
}

.pricing-features li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 38, 76, 0.05);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 38, 76, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: rgba(204, 165, 102, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method h4 {
    margin-bottom: 0.25rem;
}

.contact-method p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 38, 76, 0.1);
    background: var(--bg-color);
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(204, 165, 102, 0.1);
}

/* =========================================
   Animation Utilities
   ========================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 {
    transition-delay: 0.2s;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        /* Above menu */
    }

    .hero-container,
    .tech-container,
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-content .badge {
        align-self: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
        /* Hide 3D graphic on mobile for cleaner look */
    }

    .tech-list li {
        justify-content: center;
    }

    .floating-badge {
        display: none;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

}

/* Paketler Sayfası Stilleri */
.pricing-hero {
    padding: 180px 0 80px;
    background: radial-gradient(circle at top left, rgba(204, 165, 102, 0.1), transparent),
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

.pricing-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card-detailed {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card-detailed.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(204, 165, 102, 0.15);
}

.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.package-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.old-price {
    color: #ef4444;
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    flex-grow: 1;
}

/* Why Us Section Styles */
.why-us-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.why-us-content .section-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: left;
}

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

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item i {
    width: 50px;
    height: 50px;
    background: rgba(204, 165, 102, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: rotate(-10deg) scale(1.1);
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.why-us-image-container {
    position: relative;
}

.why-us-image-container img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.why-us-image-container:hover img {
    transform: translateY(-10px);
}

.floating-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.accent-icon {
    width: 45px;
    height: 45px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.accent-text span {
    display: block;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-main);
}

.accent-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

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

.feature-list li i {
    color: #22c55e;
    font-size: 1.2rem;
}

.geo-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #f0f7ff;
    color: #0066cc;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.detailed-features-section {
    padding: 100px 0;
    background-color: white;
}

.features-table-container {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    background: white;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
    position: relative;
}

/* Custom scrollbar for better visibility */
.features-table-container::-webkit-scrollbar {
    height: 6px;
}

.features-table-container::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.features-table th,
.features-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    white-space: nowrap;
}

.features-table th {
    background-color: #fafafa;
    font-weight: 700;
    color: var(--text-main);
}

.features-table td:first-child,
.features-table th:first-child {
    text-align: left;
    position: sticky;
    left: 0;
    background: white;
    z-index: 10;
    width: 250px;
    min-width: 220px;
    box-shadow: 10px 0 15px -10px rgba(0, 0, 0, 0.05);
}

.features-table th:first-child {
    background: #fafafa;
    z-index: 11;
}

.check-icon {
    color: #22c55e;
    font-size: 1.5rem;
}

.minus-icon {
    color: #cbd5e1;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .features-table-container {
        overflow-x: visible;
        padding: 0;
        border: none;
        background: transparent;
    }

    .features-table,
    .features-table thead,
    .features-table tbody,
    .features-table th,
    .features-table td,
    .features-table tr {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .features-table thead {
        display: none;
        /* Hide header on mobile, plan names will be inside rows */
    }

    .features-table tr {
        background: white;
        border: 1px solid #f1f5f9;
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: var(--shadow-sm);
    }

    .features-table td {
        padding: 0;
        border: none;
        text-align: left;
    }

    .features-table td:first-child {
        font-size: 1.1rem;
        margin-bottom: 20px;
        width: 100%;
        position: static;
        box-shadow: none;
        background: transparent;
        color: var(--primary-color);
        border-bottom: 2px solid #f8fafc;
        padding-bottom: 10px;
    }

    .features-table tbody {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Create a internal grid for plan statuses */
    .features-table tr {
        display: grid;
        grid-template-columns: 1fr;
    }

    .features-table td:not(:first-child) {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        font-size: 0.9rem;
    }

    .features-table td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-muted);
        font-size: 0.8rem;
        text-transform: uppercase;
    }
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .why-us-content .section-title {
        text-align: center;
        font-size: 2.2rem;
    }

    .why-us-content p {
        margin: 0 auto;
        max-width: 600px;
    }

    .highlight-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .why-us-image-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding-top: 120px;
    }

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

@media (max-width: 576px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .why-us-image-container {
        margin-top: 2rem;
    }

    .why-us-content .section-title {
        font-size: 1.875rem;
    }
}

.form-group.full-width {
    grid-column: span 1;
}

/* =========================================
   Features Hero Section
   ========================================= */
.features-hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, rgba(204, 165, 102, 0.1), transparent),
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
    position: relative;
    z-index: 1;
}

.features-hero .badge {
    margin-bottom: 2rem;
    display: inline-block;
}

.features-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 800;
}

.features-hero .hero-description {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* =========================================
   Features Tabs Section
   ========================================= */
.tabs-section {
    padding: 100px 0;
    background: #fff;
}

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

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    flex-wrap: nowrap;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
}

.tab-nav::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.tab-btn {
    padding: 1.25rem 0.75rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 16px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    white-space: normal;
    text-align: center;
    flex: 1;
    justify-content: center;
    min-width: 100px;
    line-height: 1.2;
}

.tab-btn i {
    font-size: 1.75rem;
    margin-bottom: 4px;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: white;
}

.tab-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

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

.feature-tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 800;
}

.tab-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.tab-image {
    position: relative;
}

.tab-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
    .feature-tab-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .tab-nav {
        gap: 0.5rem;
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 12px;
        overflow-x: visible;
    }

    .tab-btn {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
        flex: 1 1 calc(50% - 0.5rem);
        max-width: calc(50% - 0.25rem);
        min-width: auto;
        justify-content: center;
        background: white;
        border: 1px solid #e2e8f0;
    }

    .tab-btn i {
        font-size: 1.5rem;
    }
}

.feature-list-check {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: left;
    margin-top: 2rem;
}

.feature-list-check li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-main);
}

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

@media (max-width: 640px) {
    .feature-list-check {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   FAQ (SSS) Page Styles
   ========================================= */
.sss-hero {
    padding: 180px 0 80px;
    background: radial-gradient(circle at top right, rgba(204, 165, 102, 0.08), transparent),
        linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    text-align: center;
}

.sss-hero .hero-description {
    margin: 0 auto 1.5rem;
    max-width: 800px;
}

.faq-search-wrapper {
    max-width: 600px;
    margin: 3rem auto 0;
}

.faq-search-bar {
    display: flex;
    align-items: center;
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-search-bar i {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-right: 1rem;
}

.faq-search-bar input {
    border: none;
    outline: none;
    flex: 1;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-family: var(--font-main);
}

.sss-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.sss-sidebar {
    position: sticky;
    top: 120px;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sss-category-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sss-cat-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: var(--transition);
    text-align: left;
}

.sss-cat-btn i {
    font-size: 1.25rem;
}

.sss-cat-btn:hover {
    background: #f8fafc;
    color: var(--primary-color);
}

.sss-cat-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 15px rgba(204, 165, 102, 0.2);
}

.faq-group {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.faq-group.active {
    display: block;
}

.faq-group-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.sss-items-container .faq-item {
    margin-bottom: 1rem;
}

@media (max-width: 968px) {
    .sss-layout {
        grid-template-columns: 1fr;
    }

    .sss-sidebar {
        position: static;
        margin-bottom: 2rem;
        padding: 1rem;
    }

    .sss-category-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.25rem;
    }

    .sss-cat-btn {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0.5rem 0.25rem;
        font-size: 0.65rem;
        min-height: 80px;
    }

    .sss-cat-btn i {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
}

/* =========================================
   Contact Page Styles (iletisim.html)
   ========================================= */
.contact-hero {
    padding: 180px 0 80px;
    background: radial-gradient(circle at top right, rgba(204, 165, 102, 0.08), transparent),
        linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    text-align: center;
}

.contact-hero .hero-description {
    margin: 0 auto;
    max-width: 800px;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(204, 165, 102, 0.1);
    padding: 1rem;
    border-radius: 15px;
}

.contact-card h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

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

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

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

.actual-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.actual-contact-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.actual-contact-form input,
.actual-contact-form select,
.actual-contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.actual-contact-form input:focus,
.actual-contact-form select:focus,
.actual-contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(204, 165, 102, 0.1);
}

.full-width {
    grid-column: span 2;
    width: 100%;
}

@media (max-width: 968px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .actual-contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Technology Page Styles
   ========================================= */
.tech-hero {
    padding: 180px 0 80px;
    background: radial-gradient(circle at top right, rgba(204, 165, 102, 0.1), transparent),
        linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

.tech-hero .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.tech-hero .hero-description {
    margin: 0 auto 2.5rem;
    max-width: 700px;
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.6;
}

.tech-hero-image-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-hero-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.tech-section {
    padding: 100px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-grid.reverse {
    direction: rtl;
}

.tech-grid.reverse .tech-content {
    direction: ltr;
}

.tech-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 800;
}

.tech-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.tech-card-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-mini-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
}

.tech-mini-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.tech-image {
    position: relative;
}

.tech-image img {
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    width: 100%;
}

@media (max-width: 968px) {
    .tech-hero {
        padding: 140px 0 60px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .tech-hero-image-wrapper {
        border-radius: 16px;
        margin-top: 2rem;
    }

    .tech-content h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   Blog Section & Details
   ========================================= */
.blog-hero {
    padding-top: 180px;
    padding-bottom: var(--spacing-md);
    text-align: center;
    background: radial-gradient(circle at top right, var(--primary-light), transparent);
}

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

.blog-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 38, 76, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
}

.blog-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.blog-meta .category {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    margin-top: auto;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--primary-color);
    gap: 0.75rem;
}

/* Post Detail Styles */
.post-hero {
    padding-top: 180px;
    padding-bottom: var(--spacing-sm);
    text-align: center;
    background: var(--bg-soft);
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.post-meta .dot {
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
}

.post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.1;
}

.post-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
    padding-bottom: var(--spacing-lg);
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body h2 {
    margin: 2.5rem 0 1rem;
    color: var(--text-main);
}

.post-body blockquote {
    padding: 2rem;
    background: var(--primary-light);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    font-size: 1.25rem;
    margin: 2.5rem 0;
}

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

.sidebar-box {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 38, 76, 0.08);
    text-align: center;
}

.sidebar-box h3 {
    margin-bottom: 1rem;
}

.sidebar-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.post-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.post-list li {
    margin-bottom: 0.75rem;
}

@media (max-width: 991px) {
    .post-container {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        display: none;
    }
}

/* =========================================
   Modal Systems
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 38, 76, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--bg-surface);
    width: 100%;
    max-width: 480px;
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-soft);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

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

.modal-form .form-group {
    margin-bottom: 1.5rem;
}

.modal-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.modal-form input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: inherit;
    transition: var(--transition);
}

.modal-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-footer-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.modal-success-message {
    text-align: center;
    padding: 1rem 0;
}

.modal-success-message i {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.modal-success-message h3 {
    margin-bottom: 1rem;
}

.modal-success-message p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.full-width {
    width: 100%;
    justify-content: center;
}