/* ====================================
   SERA BELGELENDIRME - Bootstrap 5 Theme CSS
   WordPress Ready Custom Styles
   ==================================== */

/* ====================================
   1. FONTS & ROOT VARIABLES
   ==================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    /* Sera Green Theme - Kurumsal Yeşil */
    --sera-primary: #2d8a4e;
    --sera-primary-light: #4ca76b;
    --sera-primary-dark: #1e6939;
    --sera-primary-rgb: 45, 138, 78;

    /* Secondary - Koyu Gri */
    --sera-secondary: #2c332e;
    --sera-secondary-rgb: 44, 51, 46;

    /* Accent - Açık Yeşil Background */
    --sera-accent: #e8f5ec;
    --sera-accent-foreground: #1e6939;

    /* Background & Text */
    --sera-background: #ffffff;
    --sera-foreground: #1a2e1f;

    /* Muted */
    --sera-muted: #f6f8f7;
    --sera-muted-foreground: #5a6860;

    /* Border */
    --sera-border: #e2e8e4;

    /* Card */
    --sera-card: #ffffff;

    /* Destructive */
    --sera-destructive: #ef4444;

    /* Success */
    --sera-success: #22c55e;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(26, 46, 31, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(26, 46, 31, 0.1), 0 2px 4px -2px rgba(26, 46, 31, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(26, 46, 31, 0.1), 0 4px 6px -4px rgba(26, 46, 31, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(26, 46, 31, 0.1), 0 8px 10px -6px rgba(26, 46, 31, 0.1);
    --shadow-glow: 0 0 30px rgba(45, 138, 78, 0.15);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* ====================================
   2. BASE STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--sera-foreground);
    background-color: var(--sera-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--sera-foreground);
}

a {
    color: var(--sera-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--sera-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ====================================
   3. UTILITY CLASSES
   ==================================== */
.text-primary {
    color: var(--sera-primary) !important;
}

.text-muted {
    color: var(--sera-muted-foreground) !important;
}

.bg-primary {
    background-color: var(--sera-primary) !important;
}

.bg-secondary {
    background-color: var(--sera-secondary) !important;
}

.bg-muted {
    background-color: var(--sera-muted) !important;
}

.bg-accent {
    background-color: var(--sera-accent) !important;
}

.font-sans {
    font-family: 'Inter', sans-serif !important;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* ====================================
   4. TOP BAR
   ==================================== */
.top-bar {
    background-color: var(--sera-primary);
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity var(--transition-fast);
}

.top-bar a:hover {
    opacity: 0.8;
    color: #fff;
}

.top-bar a i,
.top-bar a svg {
    width: 1rem;
    height: 1rem;
}

/* ====================================
   5. HEADER & NAVBAR
   ==================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: var(--sera-background);
    transition: all var(--transition-smooth);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sera-foreground);
    transition: color var(--transition-smooth);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--sera-primary);
    transition: width var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--sera-primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    animation: fadeIn 0.2s ease-out;
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--sera-foreground);
    transition: all var(--transition-fast);
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--sera-accent);
    color: var(--sera-primary);
}

/* CTA Button in Navbar */
.btn-cta-header {
    background-color: var(--sera-primary);
    color: #fff;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all var(--transition-smooth);
}

.btn-cta-header:hover {
    background-color: var(--sera-primary-dark);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--sera-foreground);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile Menu Wrapper */
.mobile-menu-wrapper {
    display: flex;
    flex-direction: column;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sera-foreground);
    text-decoration: none;
    border-bottom: 1px solid var(--sera-border);
    transition: all var(--transition-fast);
}

.mobile-menu-link:hover {
    background-color: var(--sera-accent);
    color: var(--sera-primary);
}

.mobile-menu-link.active {
    background-color: var(--sera-accent);
    color: var(--sera-primary);
    font-weight: 600;
}

/* Mobile Menu Item (for dropdown) */
.mobile-menu-item {
    border-bottom: 1px solid var(--sera-border);
}

.mobile-menu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sera-foreground);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background-color: var(--sera-accent);
    color: var(--sera-primary);
}

.mobile-menu-toggle i {
    transition: transform var(--transition-smooth);
}

.mobile-menu-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    background-color: var(--sera-muted);
}

.mobile-submenu-link {
    display: block;
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    font-size: 0.875rem;
    color: var(--sera-muted-foreground);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.mobile-submenu-link:hover {
    color: var(--sera-primary);
    background-color: rgba(45, 138, 78, 0.05);
}

/* Mobile Contact Info */
.mobile-contact-info {
    margin-top: auto;
    padding: 1.5rem;
    background-color: var(--sera-muted);
    border-top: 1px solid var(--sera-border);
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sera-muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-contact-info a:last-child {
    margin-bottom: 0;
}

.mobile-contact-info a:hover {
    color: var(--sera-primary);
}

.mobile-contact-info a i {
    width: 1rem;
    height: 1rem;
}

/* ====================================
   6. HERO SLIDER
   ==================================== */
.hero-slider {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-slider {
        height: 70vh;
    }
}

@media (min-width: 992px) {
    .hero-slider {
        height: 85vh;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 700ms ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 46, 31, 0.7), rgba(26, 46, 31, 0.3));
}

.hero-content {
    position: relative;
    z-index: 20;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--sera-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

/* Slider Navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 3rem;
    height: 3rem;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

@media (min-width: 768px) {
    .slider-btn {
        display: flex;
    }
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.slider-btn.prev {
    left: 1.5rem;
}

.slider-btn.next {
    right: 1.5rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.slider-dot.active {
    width: 2rem;
    background-color: var(--sera-primary);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Mobile Swipe Indicator */
.swipe-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .swipe-indicator {
        display: none;
    }
}

/* ====================================
   7. BUTTONS
   ==================================== */
.btn-sera-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--sera-primary);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    transition: all var(--transition-smooth);
}

.btn-sera-primary:hover {
    background-color: var(--sera-primary-dark);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-sera-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--sera-primary);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid var(--sera-primary);
    transition: all var(--transition-smooth);
}

.btn-sera-outline:hover {
    background-color: var(--sera-primary);
    color: #fff;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fff;
    color: var(--sera-primary);
    padding: 0.75rem 2.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    transition: all var(--transition-smooth);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--sera-primary);
}

/* ====================================
   8. SECTION STYLES
   ==================================== */
.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: var(--sera-accent);
    color: var(--sera-primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    color: var(--sera-muted-foreground);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Header for Inner Pages */
.page-hero {
    position: relative;
    padding: 6rem 0;
    background-color: var(--sera-secondary);
    overflow: hidden;
}

.page-hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    background-color: var(--sera-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.page-hero::before {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.page-hero::after {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}

.page-hero-content {
    position: relative;
    z-index: 10;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

/* ====================================
   9. SERVICE CARDS
   ==================================== */
.service-card {
    background-color: var(--sera-card);
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sera-accent);
    border-radius: var(--radius-xl);
    margin-bottom: 1.25rem;
    transition: all var(--transition-smooth);
}

.service-card-icon svg,
.service-card-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--sera-primary);
}

.service-card:hover .service-card-icon {
    background-color: var(--sera-primary);
}

.service-card:hover .service-card-icon svg,
.service-card:hover .service-card-icon i {
    color: #fff;
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--sera-muted-foreground);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sera-primary);
    transition: gap var(--transition-smooth);
}

.service-card-link:hover {
    gap: 0.75rem;
    color: var(--sera-primary);
}

/* ====================================
   10. ABOUT SECTION
   ==================================== */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--sera-primary);
    color: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-badge-value {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-badge-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Stats Card */
.stats-card {
    position: absolute;
    bottom: -2rem;
    left: 1.5rem;
    right: 1.5rem;
    background-color: var(--sera-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sera-primary);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 1.875rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: var(--sera-muted-foreground);
}

/* Feature List */
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item svg,
.feature-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--sera-primary);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.875rem;
    color: var(--sera-foreground);
}

/* ====================================
   11. WHY CHOOSE US
   ==================================== */
.why-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--sera-muted);
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-2xl);
}

.why-card-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(45, 138, 78, 0.1);
    border-radius: 50%;
}

.why-card-icon svg,
.why-card-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--sera-primary);
}

.why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--sera-muted-foreground);
}

/* ====================================
   12. CTA SECTION
   ==================================== */
.cta-section {
    background-color: var(--sera-primary);
    padding: 5rem 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 2.25rem;
    }
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ====================================
   13. CONTACT FORM
   ==================================== */
.contact-card {
    background-color: var(--sera-card);
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sera-foreground);
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: var(--sera-background);
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--sera-primary);
    box-shadow: 0 0 0 3px rgba(45, 138, 78, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--sera-muted-foreground);
}

textarea.form-control {
    resize: none;
}

/* Form Check (Checkbox/Radio) */
.form-check {
    padding-left: 1.75rem;
}

.form-check-input {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.125rem;
    border: 2px solid var(--sera-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.form-check-input:checked {
    background-color: var(--sera-primary);
    border-color: var(--sera-primary);
}

.form-check-input:focus {
    border-color: var(--sera-primary);
    box-shadow: 0 0 0 3px rgba(45, 138, 78, 0.1);
    outline: none;
}

.form-check-label {
    font-size: 0.875rem;
    color: var(--sera-muted-foreground);
    line-height: 1.5;
    cursor: pointer;
}

.form-check-label a {
    text-decoration: underline;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: none;
}

/* Contact Info Cards */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--sera-muted);
    border-radius: var(--radius-xl);
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sera-accent);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-info-icon svg,
.contact-info-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--sera-primary);
}

.contact-info-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-info-content a,
.contact-info-content span {
    font-size: 0.875rem;
    color: var(--sera-muted-foreground);
}

.contact-info-content a:hover {
    color: var(--sera-primary);
}

/* Address Card */
.address-card {
    padding: 1.25rem;
    background-color: rgba(45, 138, 78, 0.05);
    border: 1px solid rgba(45, 138, 78, 0.2);
    border-radius: var(--radius-xl);
}

/* ====================================
   14. DOCUMENTS PAGE
   ==================================== */
.doc-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(45, 138, 78, 0.1);
    border: 1px solid rgba(45, 138, 78, 0.2);
    border-radius: var(--radius-xl);
    margin-bottom: 2.5rem;
}

.doc-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(45, 138, 78, 0.1);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.doc-info-icon svg,
.doc-info-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--sera-primary);
}

.doc-card {
    background-color: var(--sera-card);
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: all var(--transition-smooth);
}

.doc-card:hover {
    border-color: rgba(45, 138, 78, 0.3);
    background-color: rgba(45, 138, 78, 0.05);
    box-shadow: var(--shadow-md);
}

.doc-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.doc-card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sera-accent);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    transition: background-color var(--transition-fast);
}

.doc-card:hover .doc-card-icon {
    background-color: rgba(45, 138, 78, 0.1);
}

.doc-card-icon svg,
.doc-card-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--sera-primary);
}

.doc-category-badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background-color: rgba(45, 138, 78, 0.1);
    color: var(--sera-primary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

.doc-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--sera-foreground);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.doc-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--sera-muted-foreground);
    margin-bottom: 1rem;
}

.doc-card-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--sera-border);
}

.doc-card-actions .btn {
    flex: 1;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* ====================================
   15. VISION & MISSION
   ==================================== */
.vm-card {
    background-color: var(--sera-card);
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
}

.vm-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(45, 138, 78, 0.1);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
}

.vm-icon svg,
.vm-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--sera-primary);
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vm-card p {
    color: var(--sera-muted-foreground);
    line-height: 1.7;
}

/* ====================================
   16. VALUE CARDS
   ==================================== */
.value-card {
    background-color: var(--sera-card);
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: all var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.value-card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sera-accent);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.value-card-icon svg,
.value-card-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--sera-primary);
}

.value-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--sera-muted-foreground);
    line-height: 1.6;
}

/* ====================================
   17. TEAM STATS
   ==================================== */
.team-section {
    background-color: var(--sera-secondary);
    padding: 5rem 0;
}

.team-section h2 {
    color: #fff;
}

.team-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.team-stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    text-align: center;
}

.team-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--sera-primary);
    margin-bottom: 0.5rem;
}

.team-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ====================================
   18. ACCREDITATION LIST
   ==================================== */
.accreditation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: var(--sera-muted);
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-xl);
}

.accreditation-item svg,
.accreditation-item i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--sera-primary);
    flex-shrink: 0;
}

.accreditation-item span {
    color: var(--sera-foreground);
}

/* ====================================
   19. SERVICE DETAIL SECTION
   ==================================== */
.service-detail-section {
    padding: 4rem 0;
}

.service-detail-section:nth-child(odd) {
    background-color: var(--sera-background);
}

.service-detail-section:nth-child(even) {
    background-color: var(--sera-muted);
}

.service-detail-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sera-accent);
    border-radius: var(--radius-xl);
}

.service-detail-icon svg,
.service-detail-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--sera-primary);
}

.service-detail-badge {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sera-primary);
}

.service-visual-card {
    background-color: var(--sera-muted);
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

.service-visual-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(45, 138, 78, 0.1);
    border-radius: var(--radius-2xl);
}

.service-visual-icon svg,
.service-visual-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--sera-primary);
}

.service-visual-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--sera-background);
    border-radius: var(--radius-lg);
}

.service-visual-item .dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--sera-primary);
    border-radius: 50%;
}

.service-visual-item span {
    font-size: 0.875rem;
    color: var(--sera-muted-foreground);
}

/* ====================================
   20. FOOTER
   ==================================== */
.site-footer {
    background-color: var(--sera-secondary);
    color: #fff;
}

.footer-main {
    padding: 4rem 0;
}

.footer-logo {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-about {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--sera-primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item svg,
.footer-contact-item i {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: var(--sera-primary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.back-to-top:hover {
    color: var(--sera-primary);
}

/* ====================================
   21. WHATSAPP BUTTON
   ==================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1030;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #15803d);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.whatsapp-btn svg,
.whatsapp-btn i {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
}

/* ====================================
   22. ANIMATIONS
   ==================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-slide-left {
    animation: slideLeft 0.6s ease-out forwards;
}

/* Animation Delays */
.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

/* ====================================
   23. RESPONSIVE ADJUSTMENTS
   ==================================== */
@media (max-width: 991.98px) {
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .page-hero {
        padding: 4rem 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .stats-card {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 1.5rem;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        left: auto;
        display: inline-block;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-slider {
        min-height: 350px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .footer-main {
        padding: 3rem 0;
    }
}

/* ====================================
   24. HEADER SPACING
   ==================================== */
.main-content {
    padding-top: 72px;
    /* Mobile navbar height */
}

@media (min-width: 992px) {
    .main-content {
        padding-top: 116px;
        /* Desktop navbar + topbar height */
    }
}
/* ====================================
   25. BLOG STYLES
   ==================================== */
/* Blog Card */
.blog-card {
    background-color: var(--sera-card);
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background-color: var(--sera-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--sera-muted-foreground);
    margin-bottom: 0.75rem;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-card-meta i {
    font-size: 0.875rem;
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-card-title a {
    color: var(--sera-foreground);
    transition: color var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--sera-primary);
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--sera-muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sera-primary);
    transition: gap var(--transition-smooth);
}

.blog-card-link:hover {
    gap: 0.75rem;
    color: var(--sera-primary);
}

/* Blog Detail */
.blog-detail-hero {
    padding: 8rem 0 4rem;
    background-color: var(--sera-secondary);
}

.blog-detail-header {
    text-align: center;
}

.blog-detail-category {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--sera-primary);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.blog-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .blog-detail-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .blog-detail-title {
        font-size: 3rem;
    }
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-detail-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.blog-detail-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--sera-foreground);
}

.blog-detail-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--sera-muted-foreground);
    margin-bottom: 2rem;
}

.blog-detail-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-detail-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-detail-content p {
    margin-bottom: 1.25rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
}

/* Blog Info Box */
.blog-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(45, 138, 78, 0.05);
    border-left: 4px solid var(--sera-primary);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.blog-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(45, 138, 78, 0.1);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.blog-info-icon i {
    font-size: 1.25rem;
    color: var(--sera-primary);
}

.blog-info-box h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.blog-info-box p {
    font-size: 0.875rem;
    color: var(--sera-muted-foreground);
    line-height: 1.6;
}

/* Blog CTA Box */
.blog-cta-box {
    padding: 2rem;
    background-color: var(--sera-accent);
    border: 1px solid rgba(45, 138, 78, 0.2);
    border-radius: var(--radius-xl);
    text-align: center;
    margin: 2.5rem 0;
}

.blog-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sera-foreground);
    margin-bottom: 1rem;
    margin-top: 0;
}

.blog-cta-box p {
    color: var(--sera-muted-foreground);
    margin-bottom: 1.5rem;
}

/* Blog Tags */
.blog-tags h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}

.blog-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--sera-muted);
    color: var(--sera-foreground);
    font-size: 0.875rem;
    border-radius: 9999px;
    transition: all var(--transition-fast);
}

.blog-tag:hover {
    background-color: var(--sera-primary);
    color: #fff;
}

/* Blog Share */
.blog-share h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--sera-muted);
    color: var(--sera-foreground);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.blog-share-btn:hover {
    background-color: var(--sera-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    gap: 0.5rem;
}

.page-link {
    padding: 0.5rem 0.75rem;
    color: var(--sera-foreground);
    background-color: var(--sera-background);
    border: 1px solid var(--sera-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.page-link:hover {
    background-color: var(--sera-accent);
    color: var(--sera-primary);
    border-color: var(--sera-primary);
}

.page-item.active .page-link {
    background-color: var(--sera-primary);
    border-color: var(--sera-primary);
    color: #fff;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}
