/* KlinikLiva Main Stylesheet */

/* CSS Variables for Color Scheme - ULTRA VIBRANT NEON */
:root {
    --primary-color: #00FF9D;
    --neon-green: #00FF9D;
    --vibrant-emerald: #00E676;
    --secondary-color: #1a1a2e;
    --background-color: #FFFFFF;
    --text-color: #1a1a2e;
    --neon-glow: 0 0 20px rgba(0, 255, 157, 0.5);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 82px;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Poppins:wght@400;500;600;700&display=swap');

@media (min-width: 1200px) {
    body {
        padding-top: 100px; /* Larger padding for bigger header on desktop */
    }
}

/* ===========================
   HEADER STYLES
   =========================== */

/* Sticky Header - TRANSPARENT WITH BLUR */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 157, 0.1);
}

/* Scrolled state with enhanced blur effect */
.sticky-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 255, 157, 0.15);
}

/* Header Content Container */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

/* Logo - 2X BIGGER */
.logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu - Desktop */
.nav-menu {
    display: none;
    flex: 1;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-menu ul li {
    margin: 0;
}

.nav-menu ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--primary-color);
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

/* CTA Button - NEON GLOW EFFECT */
.cta-button {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--vibrant-emerald) 100%);
    color: var(--secondary-color);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--vibrant-emerald) 0%, var(--neon-green) 100%);
    transform: translateY(-3px);
    box-shadow: var(--neon-glow), 0 8px 25px rgba(0, 255, 157, 0.4);
}

/* Hamburger Menu Button - Mobile */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: var(--primary-color);
}

/* ===========================
   RESPONSIVE STYLES - HEADER
   =========================== */

/* Tablet and below (768px and below) */
@media (max-width: 767px) {
    /* Show hamburger, hide desktop nav and CTA */
    .hamburger {
        display: block;
    }
    
    .cta-button {
        display: none;
    }
    
    /* Mobile Navigation Menu */
    .nav-menu {
        display: none;
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background-color: var(--background-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 24px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu ul li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu ul li:last-child {
        border-bottom: none;
    }
    
    .nav-menu ul li a {
        display: block;
        padding: 16px 24px;
        font-size: 18px;
    }
    
    .nav-menu ul li a::after {
        display: none;
    }
    
    /* Smaller logo on mobile */
    .logo {
        height: 70px;
    }
    
    /* Adjust header padding */
    .header-content {
        padding: 12px 0;
    }
}

/* Desktop (768px and above) */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .logo {
        height: 120px;
    }
    
    .nav-menu ul {
        gap: 40px;
    }
    
    .header-content {
        padding: 20px 0;
    }
}

/* Slide down animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Placeholder styles - will be expanded in subsequent tasks */

/* ===========================
   FLOATING CONTACT BUTTON
   =========================== */

/* Floating Contact Container */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Main Floating Button */
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(118, 160, 143, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn:hover {
    background-color: #5f8a7a;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(118, 160, 143, 0.5);
}

.floating-btn:active {
    transform: scale(0.95);
}

/* Contact Options Popup */
.contact-options {
    display: none;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.contact-options.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    animation: slideUp 0.3s ease;
}

/* Individual Contact Option */
.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background-color: white;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
    font-size: 15px;
}

.contact-option:hover {
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* WhatsApp Styling */
.contact-option.whatsapp {
    color: #25D366;
}

.contact-option.whatsapp:hover {
    background-color: #25D366;
    color: white;
}

.contact-option.whatsapp i {
    font-size: 20px;
}

/* Instagram Styling */
.contact-option.instagram {
    color: #E4405F;
}

.contact-option.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.contact-option.instagram i {
    font-size: 20px;
}

/* Slide up animation for contact options */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
    .floating-contact {
        bottom: 16px;
        right: 16px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .contact-option {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .contact-option i {
        font-size: 18px;
    }
}

/* ===========================
   HERO SECTION
   =========================== */

/* Hero Section Container */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/doctor-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark Overlay with NEON GREEN accent */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(0, 255, 157, 0.3) 100%);
    z-index: 1;
}

/* Hero Content Container */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px 20px;
}

/* Hero Headline - ULTRA BOLD */
.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

/* Hero Subtext */
.hero-subtext {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hero CTA Button - NEON GLOW */
.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--vibrant-emerald) 100%);
    color: var(--secondary-color);
    text-decoration: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 255, 157, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, var(--vibrant-emerald) 0%, var(--neon-green) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--neon-glow), 0 12px 40px rgba(0, 255, 157, 0.5);
    color: var(--secondary-color);
}

.hero-cta-button:active {
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE STYLES - HERO SECTION
   =========================== */

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-headline {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .hero-subtext {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .hero-content {
        padding: 30px 16px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        min-height: 550px;
    }
    
    .hero-headline {
        font-size: 40px;
    }
    
    .hero-subtext {
        font-size: 18px;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .hero-section {
        min-height: 700px;
    }
    
    .hero-headline {
        font-size: 56px;
    }
    
    .hero-subtext {
        font-size: 22px;
    }
    
    .hero-cta-button {
        padding: 18px 48px;
        font-size: 20px;
    }
}

/* Ultra Wide (2560px and above) */
@media (min-width: 2560px) {
    .hero-section {
        min-height: 800px;
    }
    
    .hero-headline {
        font-size: 64px;
    }
}

/* ===========================
   STATS BAND SECTION
   =========================== */

/* Stats Band Container - NEON GRADIENT */
.stats-band {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--vibrant-emerald) 100%);
    padding: 60px 0;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.3);
}

/* Stats Grid Layout */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Stat Item */
.stat-item {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Stat Icon */
.stat-icon {
    font-size: 48px;
    color: var(--secondary-color);
    opacity: 0.8;
    margin-bottom: 8px;
}

/* Stat Number - ULTRA BOLD */
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    color: var(--secondary-color);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* Stat Label */
.stat-label {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--secondary-color);
    opacity: 0.9;
}

/* ===========================
   RESPONSIVE STYLES - STATS BAND
   =========================== */

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .stats-band {
        padding: 40px 0;
    }
    
    .stats-grid {
        gap: 32px;
    }
    
    .stat-icon {
        font-size: 40px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

/* Desktop (992px and above) */
@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
    
    .stat-item {
        gap: 16px;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .stats-band {
        padding: 80px 0;
    }
    
    .stat-icon {
        font-size: 56px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .stat-label {
        font-size: 20px;
    }
}

/* ===========================
   VISION STATEMENT SECTION
   =========================== */

/* Vision Section Container */
.vision-section {
    padding: 80px 0;
    background-color: white;
}

/* Vision Content Layout - SINGLE COLUMN */
.vision-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Vision Text Content */
.vision-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Vision Headline */
.vision-headline {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.3;
    margin: 0;
}

/* Vision Description */
.vision-description {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
}

/* Vision Image Container - REMOVED */
.vision-image {
    display: none;
}

/* Vision Image - REMOVED */
.vision-img {
    display: none;
}

/* ===========================
   RESPONSIVE STYLES - VISION SECTION
   =========================== */

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .vision-section {
        padding: 60px 0;
    }
    
    .vision-content {
        gap: 32px;
    }
    
    .vision-headline {
        font-size: 28px;
    }
    
    .vision-description {
        font-size: 16px;
    }
    
    .vision-img {
        min-height: 250px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) {
    .vision-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .vision-headline {
        font-size: 32px;
    }
    
    .vision-img {
        min-height: 350px;
    }
}

/* Desktop (992px and above) */
@media (min-width: 992px) {
    .vision-content {
        gap: 60px;
    }
    
    .vision-headline {
        font-size: 38px;
    }
    
    .vision-description {
        font-size: 19px;
    }
    
    .vision-img {
        min-height: 400px;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .vision-section {
        padding: 100px 0;
    }
    
    .vision-headline {
        font-size: 42px;
    }
    
    .vision-description {
        font-size: 20px;
    }
    
    .vision-img {
        min-height: 450px;
    }
}

/* Ultra Wide (2560px and above) */
@media (min-width: 2560px) {
    .vision-headline {
        font-size: 48px;
    }
    
    .vision-img {
        min-height: 500px;
    }
}

/* ===========================
   SERVICES OVERVIEW SECTION
   =========================== */

/* Services Overview Container */
.services-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Title - ULTRA BOLD */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Section Subtitle */
.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Service Grid Layout */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Card - NEON BORDER */
.service-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(0, 255, 157, 0.25);
    border-color: var(--neon-green);
}

/* Service Icon - NEON GREEN CIRCLE */
.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--vibrant-emerald) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px auto 24px;
    box-shadow: 0 8px 30px rgba(0, 255, 157, 0.4);
}

.service-icon i {
    font-size: 48px;
    color: var(--secondary-color);
}

/* Service Image - REMOVED */
.service-img {
    display: none;
}

/* Service Content */
.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* Service Title */
.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}

/* Service Description */
.service-description {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
    flex: 1;
}

/* Service Link - NEON EFFECT */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link:hover {
    color: var(--vibrant-emerald);
    gap: 14px;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.service-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ===========================
   RESPONSIVE STYLES - SERVICES SECTION
   =========================== */

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .services-overview {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .service-grid {
        gap: 24px;
    }
    
    .service-img {
        height: 200px;
    }
    
    .service-content {
        padding: 24px;
        gap: 12px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 15px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .service-img {
        height: 220px;
    }
}

/* Desktop (992px and above) */
@media (min-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .service-img {
        height: 240px;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .services-overview {
        padding: 100px 0;
    }
    
    .section-header {
        margin-bottom: 80px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .service-img {
        height: 260px;
    }
    
    .service-content {
        padding: 32px;
        gap: 18px;
    }
    
    .service-title {
        font-size: 26px;
    }
    
    .service-description {
        font-size: 17px;
    }
}

/* Ultra Wide (2560px and above) */
@media (min-width: 2560px) {
    .section-title {
        font-size: 56px;
    }
    
    .service-img {
        height: 300px;
    }
}

/* ===========================
   ABOUT PAGE STYLES
   =========================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin: 0;
}

/* Biography Section */
.biography-section {
    padding: 80px 0;
    background-color: white;
}

.biography-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bio-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* Certifications Section */
.certifications-section {
    max-width: 1200px;
    margin: 0 auto;
}

.certifications-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Certification Card */
.cert-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

.cert-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.cert-description {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* ===========================
   RESPONSIVE STYLES - ABOUT PAGE
   =========================== */

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .about-hero {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .biography-section {
        padding: 60px 0;
    }
    
    .biography-content {
        margin-bottom: 48px;
    }
    
    .bio-paragraph {
        font-size: 16px;
    }
    
    .certifications-section .section-title {
        margin-bottom: 32px;
        font-size: 32px;
    }
    
    .cert-card {
        padding: 24px;
    }
    
    .cert-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .cert-title {
        font-size: 18px;
    }
    
    .cert-description {
        font-size: 15px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* Desktop (992px and above) */
@media (min-width: 992px) {
    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .about-hero {
        padding: 100px 0 80px;
    }
    
    .page-title {
        font-size: 56px;
    }
    
    .page-subtitle {
        font-size: 22px;
    }
    
    .biography-section {
        padding: 100px 0;
    }
    
    .bio-paragraph {
        font-size: 19px;
    }
    
    .certifications-section .section-title {
        margin-bottom: 64px;
    }
}

/* ===========================
   SERVICES DETAIL PAGE STYLES
   =========================== */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

/* Services Detail Section */
.services-detail-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Service Detail Card */
.service-detail-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 48px;
    display: block;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--neon-green);
    box-shadow: var(--neon-glow), 0 15px 50px rgba(0, 255, 157, 0.25);
}

.service-detail-card:last-child {
    margin-bottom: 0;
}

/* Service Detail Image - REMOVED */
.service-detail-image {
    display: none;
}

.detail-img {
    display: none;
}

/* Service Detail Icon - NEW */
.service-detail-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--vibrant-emerald) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.4);
}

.service-detail-icon i {
    font-size: 56px;
    color: var(--secondary-color);
}

/* Service Detail Content */
.service-detail-content {
    padding: 40px;
}

.service-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-detail-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 32px;
    opacity: 0.85;
}

/* Service Info Block */
.service-info-block {
    margin-bottom: 32px;
}

.service-info-block:last-child {
    margin-bottom: 0;
}

.info-block-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-block-title i {
    font-size: 20px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    padding-left: 28px;
    position: relative;
}

.info-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
}

/* ===========================
   RESPONSIVE STYLES - SERVICES DETAIL PAGE
   =========================== */

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .services-hero {
        padding: 60px 0 40px;
    }
    
    .services-detail-section {
        padding: 60px 0;
    }
    
    .service-detail-card {
        margin-bottom: 32px;
    }
    
    .service-detail-image {
        height: 250px;
    }
    
    .service-detail-content {
        padding: 28px 20px;
    }
    
    .service-detail-title {
        font-size: 26px;
    }
    
    .service-detail-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .service-info-block {
        margin-bottom: 24px;
    }
    
    .info-block-title {
        font-size: 20px;
        gap: 10px;
    }
    
    .info-list {
        gap: 10px;
    }
    
    .info-list li {
        font-size: 15px;
        padding-left: 24px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) {
    .service-detail-card {
        grid-template-columns: 400px 1fr;
    }
    
    .service-detail-image {
        height: 100%;
        min-height: 400px;
    }
}

/* Desktop (992px and above) */
@media (min-width: 992px) {
    .service-detail-card {
        grid-template-columns: 450px 1fr;
    }
    
    .service-detail-image {
        min-height: 450px;
    }
    
    .service-detail-content {
        padding: 48px;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .services-hero {
        padding: 100px 0 80px;
    }
    
    .services-detail-section {
        padding: 100px 0;
    }
    
    .service-detail-card {
        grid-template-columns: 500px 1fr;
        margin-bottom: 64px;
    }
    
    .service-detail-image {
        min-height: 500px;
    }
    
    .service-detail-content {
        padding: 56px;
    }
    
    .service-detail-title {
        font-size: 36px;
    }
    
    .service-detail-description {
        font-size: 19px;
    }
    
    .info-block-title {
        font-size: 24px;
    }
    
    .info-list li {
        font-size: 17px;
    }
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

/* Contact Content Section */
.contact-content-section {
    padding: 80px 0;
    background-color: white;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

/* Form Section Title */
.form-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

/* Contact Form Container */
.contact-form-container {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(118, 160, 143, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 14px;
    margin-top: 4px;
}

.error-message.active {
    display: block;
}

/* Submit Button */
.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #5f8a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(118, 160, 143, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Contact Info Item */
.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.7;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary-color);
}

/* Locations Section */
.locations-section {
    max-width: 1200px;
    margin: 0 auto;
}

.locations-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Location Card */
.location-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
}

.location-header i {
    font-size: 24px;
}

.location-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.location-address {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Map Container */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* Map Link */
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.map-link:hover {
    color: #5f8a7a;
    gap: 12px;
}

.map-link i {
    font-size: 14px;
}

/* ===========================
   RESPONSIVE STYLES - CONTACT PAGE
   =========================== */

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .contact-content-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .form-section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .contact-form-container {
        padding: 28px 20px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group label {
        font-size: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .contact-info-container {
        gap: 24px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .contact-value {
        font-size: 16px;
    }
    
    .locations-section .section-title {
        margin-bottom: 32px;
        font-size: 32px;
    }
    
    .locations-grid {
        gap: 32px;
    }
    
    .location-card {
        padding: 24px;
        gap: 16px;
    }
    
    .location-title {
        font-size: 20px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop (992px and above) */
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .contact-hero {
        padding: 100px 0 80px;
    }
    
    .contact-content-section {
        padding: 100px 0;
    }
    
    .contact-grid {
        gap: 64px;
        margin-bottom: 100px;
    }
    
    .form-section-title {
        font-size: 32px;
    }
    
    .contact-form-container {
        padding: 48px;
    }
    
    .locations-section .section-title {
        margin-bottom: 64px;
    }
    
    .location-card {
        padding: 40px;
    }
}

/* ===========================
   BLOG PAGE STYLES
   =========================== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

/* Blog Content Section */
.blog-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Card - NO IMAGES, NEON BORDER */
.blog-card {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.03) 0%, rgba(0, 230, 118, 0.05) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 3px solid var(--neon-green);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-green) 0%, var(--vibrant-emerald) 100%);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--neon-glow), 0 15px 50px rgba(0, 255, 157, 0.25);
    border-color: var(--vibrant-emerald);
}

/* Blog Icon - NEW */
.blog-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--vibrant-emerald) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0, 255, 157, 0.3);
}

.blog-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

/* Blog Image */
.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

/* Blog Content */
.blog-content {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* Blog Title - ULTRA BOLD */
.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.2;
}

/* Blog Excerpt */
.blog-excerpt {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
    flex: 1;
}

/* Blog Link - NEON EFFECT */
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-link:hover {
    color: var(--vibrant-emerald);
    gap: 14px;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.blog-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(4px);
}

/* ===========================
   RESPONSIVE STYLES - BLOG PAGE
   =========================== */

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .blog-hero {
        padding: 60px 0 40px;
    }
    
    .blog-content-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        gap: 24px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 24px;
        gap: 12px;
    }
    
    .blog-title {
        font-size: 20px;
    }
    
    .blog-excerpt {
        font-size: 15px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .blog-image {
        height: 220px;
    }
}

/* Desktop (992px and above) */
@media (min-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .blog-image {
        height: 240px;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .blog-hero {
        padding: 100px 0 80px;
    }
    
    .blog-content-section {
        padding: 100px 0;
    }
    
    .blog-image {
        height: 260px;
    }
    
    .blog-content {
        padding: 32px;
        gap: 18px;
    }
    
    .blog-title {
        font-size: 26px;
    }
    
    .blog-excerpt {
        font-size: 17px;
    }
}

/* Ultra Wide (2560px and above) */
@media (min-width: 2560px) {
    .blog-image {
        height: 300px;
    }
}

/* ===========================
   FOOTER STYLES
   =========================== */

/* Footer Container */
.site-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 24px;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

/* Footer Section */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Footer Title */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

/* Footer Text */
.footer-text {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    opacity: 0.9;
}

.footer-contact-item i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.footer-contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-4px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* ===========================
   RESPONSIVE STYLES - FOOTER
   =========================== */

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .site-footer {
        padding: 48px 0 20px;
    }
    
    .footer-content {
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .footer-text,
    .footer-links li a,
    .footer-contact-item {
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

/* Desktop (992px and above) */
@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .site-footer {
        padding: 80px 0 32px;
    }
    
    .footer-content {
        margin-bottom: 48px;
    }
    
    .footer-title {
        font-size: 22px;
    }
    
    .footer-text,
    .footer-links li a,
    .footer-contact-item {
        font-size: 16px;
    }
}

/* ===========================
   UTILITY CLASSES
   =========================== */

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Lazy Loading Images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Focus Indicators for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to Main Content Link (Accessibility) */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
}

.skip-to-main:focus {
    top: 0;
}


/* ===========================
   BLOG DETAIL PAGE STYLES
   =========================== */

/* Blog Detail Content */
.blog-detail-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--neon-green);
}

/* Blog Detail Icon */
.blog-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--vibrant-emerald) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.4);
}

.blog-detail-icon i {
    font-size: 48px;
    color: var(--secondary-color);
}

/* Blog Section */
.blog-section {
    margin-bottom: 48px;
}

.blog-section:last-of-type {
    margin-bottom: 0;
}

.blog-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.blog-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.blog-section p:last-child {
    margin-bottom: 0;
}

/* Blog Lists */
.blog-list {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.blog-list li {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 16px;
    padding-left: 36px;
    position: relative;
}

.blog-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 16px;
}

.blog-list li strong {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Ordered List */
ol.blog-list {
    counter-reset: blog-counter;
}

ol.blog-list li::before {
    content: counter(blog-counter);
    counter-increment: blog-counter;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--vibrant-emerald) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
}

/* Blog CTA Section */
.blog-cta {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid var(--neon-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-back-link:hover {
    color: var(--vibrant-emerald);
    gap: 12px;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.blog-back-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.blog-back-link:hover i {
    transform: translateX(-4px);
}

/* ===========================
   RESPONSIVE STYLES - BLOG DETAIL PAGE
   =========================== */

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    .blog-detail-content {
        padding: 40px 24px;
    }
    
    .blog-detail-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 32px;
    }
    
    .blog-detail-icon i {
        font-size: 36px;
    }
    
    .blog-section {
        margin-bottom: 36px;
    }
    
    .blog-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .blog-section p {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .blog-list {
        margin: 20px 0;
    }
    
    .blog-list li {
        font-size: 16px;
        margin-bottom: 14px;
        padding-left: 32px;
    }
    
    .blog-cta {
        margin-top: 48px;
        padding-top: 32px;
        gap: 20px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .blog-detail-content {
        padding: 50px 32px;
    }
    
    .blog-section h2 {
        font-size: 28px;
    }
    
    .blog-section p {
        font-size: 17px;
    }
    
    .blog-list li {
        font-size: 17px;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .blog-detail-content {
        padding: 80px 60px;
    }
    
    .blog-detail-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 48px;
    }
    
    .blog-detail-icon i {
        font-size: 56px;
    }
    
    .blog-section {
        margin-bottom: 56px;
    }
    
    .blog-section h2 {
        font-size: 36px;
        margin-bottom: 28px;
    }
    
    .blog-section p {
        font-size: 19px;
        line-height: 1.9;
    }
    
    .blog-list li {
        font-size: 19px;
        margin-bottom: 18px;
    }
    
    .blog-cta {
        margin-top: 80px;
        padding-top: 48px;
    }
}
