/* --- CSS Variables --- */
:root {
    --primary-color: #0D2C54; /* Deep Blue */
    --secondary-color: #F8F9FA; /* Off-White */
    --accent-color: #2A9D8F; /* Teal */
    --text-color: #333;
    --heading-color: var(--primary-color);
    --white-color: #FFFFFF;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    --header-height: 80px;
}

/* --- Global Styles & Resets --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.subtitle {
    font-size: 1.25rem;
    color: #555;
    font-weight: 400;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin-right: 12px;
    margin-top: 8px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: #248a7e;
    color: var(--white-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.15);
    color: var(--white-color);
    border-color: var(--white-color);
}

/* --- Header & Navigation --- */
.main-header {
    background-color: var(--white-color);
    height: var(--header-height);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}
.brand-logo:hover {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--accent-color);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
/* Using a CSS gradient as reliable hero background â no broken external image dependency */
.hero {
    background: linear-gradient(135deg, #0D2C54 0%, #1a4a7a 50%, #0f3d6b 100%);
    color: var(--white-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern overlay for visual texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(42, 157, 143, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--white-color);
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
}

.hero-content .subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    line-height: 1.7;
}

/* --- General Sections --- */
section {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 1rem;
}
.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: #555;
}
.page-header {
    background-color: var(--secondary-color);
    padding: 50px 0;
    text-align: center;
}
.page-header .subtitle {
    margin-top: 0.5rem;
}

/* --- Features Grid (Homepage) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    text-align: center;
}

.feature-item {
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-icon-svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    color: var(--accent-color);
}

.feature-icon-svg svg {
    width: 100%;
    height: 100%;
}

.feature-item h3 {
    margin-bottom: 0.75rem;
}

/* --- Stats Section --- */
.section-stats {
    background-color: var(--primary-color);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
}

/* --- About Snippet (Homepage) --- */
.section-about-snippet {
    background-color: var(--secondary-color);
}
.about-snippet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.about-snippet-text h2 {
    margin-bottom: 1rem;
}
.about-snippet-image img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    max-height: 480px;
    object-position: top;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* --- CTA Section --- */
.section-cta {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}
.section-cta h2, .section-cta p {
    color: var(--white-color);
}
.section-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- About Page --- */
.section-about-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
}
.about-main-image img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    object-position: top;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    position: sticky;
    top: 100px;
}
.about-main-text h2 {
    margin-top: 2rem;
}
.about-main-text h2:first-child {
    margin-top: 0;
}

.cv-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
}
.cv-list li {
    padding: 8px 0 8px 16px;
    border-left: 3px solid var(--accent-color);
    margin-bottom: 8px;
    line-height: 1.5;
}
.cv-list li strong {
    color: var(--primary-color);
}

.about-cta {
    margin-top: 2rem;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Skills Section (About Page) --- */
.section-skills {
    background-color: var(--secondary-color);
    padding: 60px 0;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 2rem;
}

.skill-tag {
    background-color: var(--white-color);
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}

/* --- Services Page --- */
.section-services {
    padding-bottom: 80px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--white-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-card-icon {
    width: 64px;
    height: 64px;
    color: var(--accent-color);
    margin: 28px 25px 0;
}
.service-card-icon svg {
    width: 100%;
    height: 100%;
}
.service-card-content {
    padding: 20px 25px 28px;
    flex-grow: 1;
}
.service-card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}
.service-detail {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
    margin-top: 0.75rem;
}

/* --- Contact Page --- */
.section-contact {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
}
.contact-details h3 {
    margin-bottom: 1rem;
}
.contact-details ul {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}
.contact-details li {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact-details li strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    font-family: var(--font-heading);
}
.contact-availability {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 20px;
    margin-top: 2rem;
}
.contact-availability h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.contact-availability p {
    margin-bottom: 0;
    font-size: 0.95rem;
}
.contact-form .form-group {
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--white-color);
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}
.contact-form button {
    width: 100%;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 30px 0;
    text-align: center;
}
.main-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.main-footer p { margin-bottom: 0; }
.social-links a {
    color: var(--white-color);
    margin-left: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}
.social-links a:hover {
    color: var(--accent-color);
}


/* --- Form Feedback States --- */
.form-success,
.form-error {
    display: none;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.form-success {
    background-color: #e8f8f2;
    border: 1px solid #a8e6cc;
    color: #1a6640;
}
.form-error {
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
.form-success svg,
.form-error svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}
.form-success svg { stroke: #16a34a; }
.form-error svg { stroke: #dc2626; }
.form-success p,
.form-error p {
    margin: 0;
}
.form-error a {
    color: #991b1b;
    text-decoration: underline;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

/* WhatsApp inline button (contact page) */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-whatsapp:hover {
    background-color: #1ebe5d;
    color: #ffffff;
    transform: translateY(-2px);
}
.whatsapp-btn-icon {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    flex-shrink: 0;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .about-snippet-content,
    .section-about-main,
    .section-contact {
        grid-template-columns: 1fr;
    }
    .about-snippet-image {
        order: -1;
    }
    .about-main-image img {
        position: static;
        max-height: 400px;
    }
    .section-about-main {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .nav-links {
        position: absolute;
        top: var(--header-height);
        right: 0;
        width: 100%;
        background-color: var(--white-color);
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }
    .nav-links.active {
        max-height: 500px;
        padding: 20px 0;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        padding: 15px 0;
    }
    .nav-links a::after {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-footer .container {
        flex-direction: column;
        text-align: center;
    }

    .social-links a:first-child {
        margin-left: 0;
    }

    .about-cta {
        flex-direction: column;
    }

    .about-cta .btn {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    section {
        padding: 60px 0;
    }
}

/* --- Hero Enhancements --- */
.hero-badge {
    display: inline-block;
    background-color: rgba(42, 157, 143, 0.2);
    border: 1px solid rgba(42, 157, 143, 0.5);
    color: #7de8de;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.hero-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 1.5rem auto 2.5rem;
}

.tech-badge {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* --- Brands Section --- */
.section-brands {
    background-color: var(--secondary-color);
    padding: 50px 0;
}

.brands-label {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
    margin-bottom: 2rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    align-items: center;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    background-color: var(--white-color);
    color: #bbb;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.brand-logo-item svg {
    width: 100%;
    height: 44px;
}

.brand-logo-item:hover {
    color: var(--primary-color);
    border-color: #ccc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

@media (max-width: 900px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- AI Services Preview (Homepage) --- */
.section-ai-preview {
    background-color: var(--white-color);
    padding: 80px 0;
}

.ai-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}

.ai-preview-card {
    background: linear-gradient(135deg, #f0fdfb 0%, #e8f8f6 100%);
    border: 1px solid rgba(42, 157, 143, 0.2);
    border-radius: 10px;
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(42, 157, 143, 0.12);
}

.ai-card-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.ai-card-icon svg {
    width: 100%;
    height: 100%;
}

.ai-preview-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.ai-preview-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}

/* --- Services Category Header --- */
.services-category-header {
    margin-bottom: 2.5rem;
}

.services-category-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    border: 1px solid #ddd;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.services-category-badge--ai {
    background-color: rgba(42, 157, 143, 0.1);
    border-color: rgba(42, 157, 143, 0.3);
    color: var(--accent-color);
}

.services-category-header h2 {
    margin-bottom: 0.75rem;
}

.services-category-header p {
    max-width: 700px;
    color: #555;
    margin-bottom: 0;
}

.section-services--ecom {
    padding-top: 60px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

/* AI service card accent */
.service-card--ai {
    border-color: rgba(42, 157, 143, 0.25);
    background: linear-gradient(180deg, #fafffe 0%, #ffffff 100%);
}

.service-card--ai:hover {
    border-color: rgba(42, 157, 143, 0.5);
}

/* Tool badges inside service cards */
.service-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}

.tool-badge {
    background-color: rgba(42, 157, 143, 0.1);
    border: 1px solid rgba(42, 157, 143, 0.25);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 3px;
}

/* --- About Page: Skill Categories --- */
.skills-category {
    margin-bottom: 2.5rem;
}

.skills-category-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 1rem;
    margin-top: 0;
}

.skill-tag--ai {
    background-color: rgba(42, 157, 143, 0.08);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.skill-tag--ai:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}

/* --- Booking Section (Contact Page) --- */
.section-booking {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a7a 100%);
    padding: 70px 0;
}

.booking-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 50px;
}

.booking-card-left h2 {
    color: var(--white-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.booking-card-left p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.booking-icon {
    width: 56px;
    height: 56px;
    color: var(--accent-color);
}

.booking-icon svg {
    width: 100%;
    height: 100%;
}

.booking-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.booking-benefits li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent-color);
}

.booking-card-right {
    text-align: center;
}

.booking-calendar-embed {
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 36px 28px;
}

.booking-calendar-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.btn-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    padding: 14px 24px;
}

.booking-alt-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

@media (max-width: 800px) {
    .booking-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 24px;
    }
    .booking-card-left h2 {
        font-size: 1.6rem;
    }
}

/* --- Blog Page --- */
.section-blog {
    padding-bottom: 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 0;
}

.blog-grid--small {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 2rem;
}

.blog-card {
    background-color: var(--white-color);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.blog-card-link {
    display: block;
    text-decoration: none;
}

.blog-card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-card-image--1 { background: linear-gradient(135deg, #0D2C54 0%, #1a4a7a 100%); }
.blog-card-image--2 { background: linear-gradient(135deg, #2A9D8F 0%, #1a7a6e 100%); }
.blog-card-image--3 { background: linear-gradient(135deg, #1a4a7a 0%, #2A9D8F 100%); }
.blog-card-image--4 { background: linear-gradient(135deg, #0f3d6b 0%, #0D2C54 100%); }

.blog-card-image-inner {
    width: 80px;
    height: 80px;
    opacity: 0.7;
}

.blog-card-image-inner svg {
    width: 100%;
    height: 100%;
}

.blog-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.blog-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 3px;
}

.blog-tag--ai {
    background-color: rgba(42, 157, 143, 0.1);
    color: var(--accent-color);
}

.blog-date,
.blog-read-time {
    font-size: 0.82rem;
    color: #999;
}

.blog-card-content h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex-grow: 1;
}

.blog-card-content h2 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-content h2 a:hover {
    color: var(--accent-color);
}

.blog-card-content p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
}

.blog-read-more:hover {
    color: var(--primary-color);
}

/* --- Blog Post Page --- */
.blog-post {
    max-width: 100%;
}

.blog-post-header {
    background-color: var(--secondary-color);
    padding: 60px 0 50px;
    margin-bottom: 0;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.blog-post-header h1 {
    font-size: 2.4rem;
    line-height: 1.25;
    max-width: 800px;
    margin-bottom: 0.75rem;
}

.blog-post-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 1.5rem;
}

.blog-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 2px solid var(--accent-color);
}

.blog-post-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--primary-color);
}

.blog-post-author span {
    font-size: 0.85rem;
    color: #888;
}

.blog-post-body {
    padding: 60px 20px;
    max-width: 760px;
    margin: 0 auto;
}

.blog-post-body h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.blog-post-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.25rem;
}

.blog-lead {
    font-size: 1.15rem !important;
    color: #333 !important;
    font-weight: 400;
}

.blog-post-body strong {
    color: var(--primary-color);
}

.blog-post-cta {
    background: linear-gradient(135deg, #f0fdfb 0%, #e8f8f6 100%);
    border: 1px solid rgba(42, 157, 143, 0.25);
    border-radius: 12px;
    padding: 36px;
    margin-top: 3rem;
    text-align: center;
}

.blog-post-cta h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.blog-post-cta p {
    color: #555;
    margin-bottom: 1.5rem;
}

.section-blog-related {
    padding-top: 0;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .blog-post-header h1 {
        font-size: 1.9rem;
    }
    .blog-post-body {
        padding: 40px 20px;
    }
}
