/*
Theme Name: Portfolio
Theme URI: http://sakibdeveloper.com/theme/portfolio
Author: Md. Sakib
Author URI: http://mdsakib.info
Description: A sleek and modern portfolio theme for showcasing your work.
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

:root {
  --dark-bg: #0a192f;
  --dark-blue: #112240;
  --medium-blue: #233554;
  --light-blue: #64ffda;
  --text-light: #e6f1ff;
  --text-gray: #8892b0;
  --transition: all 0.3s ease;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}
/* ===== STICKY HEADER STYLES ===== */

/* Main Header Container */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

/* Initial state - transparent/scrolled up */
header:not(.sticky) {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
   
}

/* Sticky state - when scrolled */
header.sticky {
    background: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ensure body has padding to account for fixed header */


/* Reduce padding when header is sticky */
body.header-sticky {
    padding-top: 60px;
}

/* Logo transition */
header .logo {
    transition: all 0.3s ease;
}

header.sticky .logo {
    font-size: 1.6rem;
    transform: scale(0.95);
}

/* Menu items transition */
header .menu a {
    transition: all 0.3s ease;
}

header.sticky .menu a {
    padding: 8px 15px;
    font-size: 0.95rem;
}

/* Hamburger menu adjustments */
header.sticky .menu-icon span {
    background: var(--light-blue);
}

/* Mobile menu adjustments */
@media (max-width: 991px) {
    header {
        position: fixed !important;
        background: var(--dark-bg) !important;
        backdrop-filter: none !important;
    }
    
 
    
    header.sticky {
        
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Desktop adjustments */
@media (min-width: 992px) {
    /* Menu background on hover in sticky state */
    header.sticky .menu a:hover {
        background: rgba(100, 255, 218, 0.15);
    }
    
    /* Submenu adjustments for sticky header */
    header.sticky .sub-menu {
        background: rgba(17, 34, 64, 0.98);
        backdrop-filter: blur(10px);
    }
}

/* Ensure content doesn't hide under header */
section:first-of-type {
    padding-top: 20px;
}

/* Smooth transition for all header elements */
header * {
    transition: all 0.3s ease;
}
/* ===== ENHANCED STICKY HEADER EFFECTS ===== */

/* Hide/show animation */
header.sticky-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

header.sticky-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Mobile specific */
header.mobile-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--dark-bg) !important;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Logo shrink effect */
header.sticky .logo {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

/* Menu items shrink */


/* Add a subtle shadow when sticky */
header.sticky::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
    pointer-events: none;
}

/* Smooth transitions */
header,
header * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure content visibility */
.main-content {
    position: relative;
    z-index: 1;
}

/* Fix for admin bar in WordPress */
.admin-bar header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}

/* Safari fix for backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    header.sticky {
        background: rgba(10, 25, 47, 0.98);
    }
}
/* NAV */
.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
 
}

.logo {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--light-blue);
  letter-spacing: 1px;
}

/* MENU BASE */
.menu {
  list-style: none;
  display: flex;
  gap: 32px;
}

.menu a {
  text-decoration: none;
  color: var(--text-light);
  padding: 12px 20px;
  display: block;
  border-radius: 4px;
  transition: var(--transition);
  font-weight: 500;
  position: relative;
}

.menu a:hover {
  color: var(--light-blue);
  background: var(--dark-blue);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: var(--transition);
  transform: translateX(-50%);
}

.menu a:hover::after {
  width: 80%;
}

/* ===== DESKTOP DROPDOWN ===== */
.menu-item-has-children {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dark-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 10px 0;
  display: none;
  z-index: 1000;
  border: 1px solid var(--medium-blue);
}

.sub-menu li {
  list-style: none;
}

.sub-menu a {
  padding: 12px 20px;
  color: var(--text-gray);
  white-space: nowrap;
}

.sub-menu a:hover {
  color: var(--light-blue);
  background: var(--medium-blue);
}

.menu-item-has-children:hover > .sub-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HAMBURGER ===== */
.check-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-icon span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--light-blue);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* HAMBURGER ANIMATION */
.check-button.active .bar1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.check-button.active .bar2 {
  opacity: 0;
}

.check-button.active .bar3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .check-button {
    display: block;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-blue);
    flex-direction: column;
    padding: 80px 20px 40px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow-y: auto;
    gap: 0;
  }

  .menu.active {
    right: 0;
  }

  /* Mobile menu items */
  .menu-item {
    width: 100%;
    border-bottom: 1px solid var(--medium-blue);
  }

  .menu-item:last-child {
    border-bottom: none;
  }

  .menu a {
    padding: 18px 16px;
    border-radius: 0;
  }

  .menu a:hover {
    background: var(--medium-blue);
  }

  .menu a::after {
    display: none;
  }

  /* MOBILE SUBMENU */
  .menu-item-has-children > a {
    position: relative;
    padding-right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.menu-item-has-children > a::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 1.5rem;
  color: var(--light-blue);
  font-weight: 300;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(100, 255, 218, 0.1);
}

.menu-item-has-children > a.open::after {
  content: "−";
  background: rgba(100, 255, 218, 0.2);
}
  .sub-menu {
    position: static;
    box-shadow: none;
    background: var(--medium-blue);
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: block !important;
    width: 100%;
  }

  .sub-menu.active {
    max-height: 300px;
  }

  .sub-menu li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sub-menu a {
    padding: 16px 16px 16px 30px;
    color: var(--text-gray);
    font-size: 0.95rem;
  }

  /* Overlay when menu is open */
  .menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 25, 47, 0.8);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .menu.active::before {
    opacity: 1;
    pointer-events: all;
  }
}

/* Body lock when menu is open on mobile */
@media (max-width: 991px) {
  body.menu-open {
    overflow: hidden;
  }
}
/* ===== BLOG LAYOUT - RESPONSIVE GRID ===== */

/* Header Image */
.custom-header {
    margin-bottom: 50px;
    text-align: center;
}

.custom-header img {
    width: 100%;
    max-width: 1200px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

/* Main Content */
.site-content {
    padding: 40px 0 80px;
    background: var(--dark-bg);
}

.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Header with Archive Title Effect */
.site-main > .container h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 50px 0;
    padding-bottom: 20px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.site-main > .container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
    border-radius: 2px;
}

/* Desktop: 2-column Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

/* Blog Card */
.blog-item {
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(100, 255, 218, 0.08);
    position: relative;
    overflow: hidden;
}



.blog-item:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 60px rgba(100, 255, 218, 0.1);
}

.blog-item:hover::before {
    opacity: 1;
}

/* Article Title with Gradient Hover Effect */
article h2 {
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.4;
    font-weight: 600;
}

article h2 a {
    color: var(--dark-bg);
    text-decoration: none;
    background: linear-gradient(120deg, transparent 0%, transparent 50%, var(--light-blue) 50%);
    background-size: 220% 100%;
    background-position: 100% 0;
    transition: all 0.5s ease;
    padding: 2px 0;
    display: inline;
}

article h2 a:hover {
    background-position: 0 0;
    
    color: #ffffff;
}

/* Meta Information */
.meta-info {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.meta-info > p {
    color: #8892b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.meta-info > p:last-child {
    margin-bottom: 0;
}

/* Author Link */
.meta-info a.author-link {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(100, 255, 218, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

.meta-info a.author-link:hover {
    background: rgba(100, 255, 218, 0.2);
    color: #ffffff;
}

/* Category & Tags */
.post-categories a,
.post-tags a {
    color: #8892b0;
    text-decoration: none;
    background: rgba(136, 146, 176, 0.1);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin: 2px 5px;
    display: inline-block;
}

.post-categories a:hover {
    background: rgba(100, 255, 218, 0.2);
    color: #64ffda;
    transform: translateY(-2px);
}

.post-tags a {
    background: rgba(136, 146, 176, 0.08);
    color: #8892b0;
    border: 1px solid rgba(136, 146, 176, 0.2);
}

.post-tags a:hover {
    background: rgba(136, 146, 176, 0.15);
    color: #a8b2d1;
    border-color: rgba(136, 146, 176, 0.3);
    transform: none;
}

/* Excerpt Content */
.entry-content {
    color: #a8b2d1;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
}

.entry-content p {
    margin-bottom: 1em;
}

.entry-content p:last-child {
    margin-bottom: 0;
}

/* Read More Button with Slide Effect */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border: 2px solid var(--light-blue);
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--light-blue);
    transition: left 0.4s ease;
    z-index: -1;
}

.read-more:hover {
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
}

.read-more:hover::before {
    left: 0;
}

.read-more::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Featured Image */
.post-thumbnail {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    position: relative;
}

.post-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 25, 47, 0.7), transparent);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-item:hover .post-thumbnail img {
    transform: scale(1.1);
}
/* ===== PAGINATION - FIXED ===== */
.navigation.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    clear: both;
}

.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.page-numbers {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 34, 64, 0.5);
    color: #a8b2d1;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 5px;
}

.page-numbers:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--light-blue);
    color: var(--light-blue);
    transform: translateY(-3px);
}

.page-numbers.current {
    background: var(--light-blue);
    color: var(--dark-bg);
    font-weight: 600;
    border-color: var(--light-blue);
}

.page-numbers.current:hover {
    background: var(--light-blue);
    color: var(--dark-bg);
    transform: none;
    cursor: default;
}

/* Prev/Next buttons styling */
.prev,
.next {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 15px;
}

.prev::before {
    content: '←';
    font-weight: bold;
}

.next::after {
    content: '→';
    font-weight: bold;
}

/* Dots styling */
.page-numbers.dots {
    background: transparent;
    border: none;
    color: #8892b0;
    min-width: auto;
}

.page-numbers.dots:hover {
    background: transparent;
    border: none;
    transform: none;
    color: #8892b0;
    cursor: default;
}

/* Alternative: Using pure CSS arrows (if font issue persists) */
.page-numbers.prev-arrow::before {
    content: '←';
    margin-right: 5px;
    font-weight: bold;
}

.page-numbers.next-arrow::after {
    content: '→';
    margin-left: 5px;
    font-weight: bold;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .navigation.pagination {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .nav-links {
        gap: 8px;
    }
    
    .page-numbers {
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .prev,
    .next {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .page-numbers {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .prev,
    .next {
        padding: 0 10px;
        font-size: 0.9rem;
    }
    
    /* Hide page numbers on very small screens, keep only prev/next */
    .page-numbers:not(.prev):not(.next):not(.current):not(.dots) {
        display: none;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
    /* Mobile: Switch to 1 column */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile Blog Header */
    .site-main > .container h1 {
        font-size: 2.2rem;
        margin-bottom: 30px;
        background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Mobile Header Image */
    .custom-header img {
        height: 200px;
        border-radius: 8px;
    }
    
    /* Mobile Blog Card */
    .blog-item {
        padding: 25px;
        border-radius: 12px;
        margin-bottom: 0;
    }
    
    /* Mobile Title */
    article h2 {
        font-size: 1.4rem;
    }
    

    
    /* Mobile Meta Info */
    .meta-info {
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    .meta-info > p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* Mobile Categories & Tags */
    .post-categories,
    .post-tags {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .post-categories a,
    .post-tags a {
        margin: 2px 3px;
        font-size: 0.8rem;
        padding: 2px 8px;
    }
    
    /* Mobile Read More Button */
    .read-more {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    /* Mobile Featured Image */
    .post-thumbnail {
        height: 180px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .site-main > .container h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .blog-item {
        padding: 20px;
    }
    
    article h2 {
        font-size: 1.3rem;
    }
    
    .meta-info > p {
        font-size: 0.85rem;
    }
    
    .entry-content {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* ===== SINGLE POST STYLES ===== */

/* Single Post Header Image */
.single-header {
    margin-bottom: 40px;
}

.single-post-featured-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.single-post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-post-image:hover {
    transform: scale(1.02);
}

.single-header-image {
    width: 100%;
    max-width: 1200px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto;
    display: block;
}

/* Single Post Container */
.single-post-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Single Post Header */
.single-post-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(100, 255, 218, 0.2);
}

.single-post-categories {
    margin-bottom: 20px;
}

.category-badge {
    display: inline-block;
    background: rgba(100, 255, 218, 0.1);
    color: var(--light-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.category-badge:hover {
    background: var(--light-blue);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.single-post-title {
    font-size: 3rem;
    color: #ffffff;
    margin: 0 0 25px 0;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8892b0;
    font-size: 0.95rem;
}

.meta-icon {
    font-size: 1.1rem;
}

.meta-item a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-item a:hover {
    color: #ffffff;
}

.reading-time {
    color: #a8b2d1;
}

/* Single Post Content */
.single-post-content {
    color: #a8b2d1;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.single-post-content p {
    margin-bottom: 1.8em;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    color: #ffffff;
    margin-top: 2.5em;
    margin-bottom: 1em;
    font-weight: 600;
    line-height: 1.3;
}

.single-post-content h2 {
    font-size: 2rem;
}

.single-post-content h3 {
    font-size: 1.6rem;
}

.single-post-content h4 {
    font-size: 1.3rem;
}

.single-post-content blockquote {
    border-left: 4px solid var(--light-blue);
    padding: 30px;
    margin: 2.5em 0;
    background: rgba(100, 255, 218, 0.05);
    color: #a8b2d1;
    font-style: italic;
    font-size: 1.2rem;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.single-post-content blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(100, 255, 218, 0.2);
    font-family: serif;
}

.single-post-content ul,
.single-post-content ol {
    margin: 1.5em 0;
    padding-left: 30px;
}

.single-post-content li {
    margin-bottom: 0.8em;
    position: relative;
}

.single-post-content ul li::before {
    content: '▸';
    color: var(--light-blue);
    position: absolute;
    left: -20px;
}

.single-post-content a {
    color: var(--light-blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.single-post-content a:hover {
    color: #ffffff;
    border-bottom-color: var(--light-blue);
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.single-post-content pre {
    background: var(--dark-blue);
    padding: 25px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2em 0;
    border: 1px solid rgba(100, 255, 218, 0.1);
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
}

.single-post-content code {
    background: rgba(100, 255, 218, 0.1);
    color: var(--light-blue);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
}

/* Page Links for Multi-page Posts */
.page-links {
    margin: 2em 0;
    padding: 20px;
    background: rgba(17, 34, 64, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.page-links-title {
    display: block;
    margin-bottom: 10px;
    color: var(--light-blue);
    font-weight: 600;
}

.page-number {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 12px;
    background: rgba(100, 255, 218, 0.1);
    color: var(--light-blue);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-number:hover {
    background: var(--light-blue);
    color: var(--dark-bg);
}

/* Single Post Footer */
.single-post-footer {
    margin: 50px 0;
    padding: 30px;
    background: rgba(17, 34, 64, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.tags-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    background: rgba(136, 146, 176, 0.1);
    color: #a8b2d1;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(136, 146, 176, 0.2);
}

.tag-item:hover {
    background: rgba(100, 255, 218, 0.2);
    color: var(--light-blue);
    transform: translateY(-2px);
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 25px;
    margin: 60px 0;
    padding: 30px;
    background: rgba(17, 34, 64, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(100, 255, 218, 0.3);
}

.author-info {
    flex: 1;
}

.author-name {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.author-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-name a:hover {
    color: var(--light-blue);
}

.author-description {
    color: #a8b2d1;
    line-height: 1.7;
    margin: 0;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
    padding-top: 40px;
    border-top: 2px solid rgba(100, 255, 218, 0.2);
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 25px;
    background: rgba(17, 34, 64, 0.5);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(17, 34, 64, 0.8);
    border-color: rgba(100, 255, 218, 0.3);
    transform: translateY(-5px);
}

.prev-link {
    text-align: left;
}

.next-link {
    text-align: right;
}

.nav-arrow {
    font-size: 2rem;
    color: var(--light-blue);
    margin: 0 20px;
}

.nav-content {
    flex: 1;
}

.nav-label {
    display: block;
    color: #8892b0;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.nav-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
}

/* Related Posts */
.related-posts {
    margin: 80px 0 40px;
}

.related-posts-title {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.related-posts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--light-blue);
    border-radius: 2px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.related-post {
    background: rgba(17, 34, 64, 0.5);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.related-post:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.1);
}

.related-post-thumbnail {
    height: 150px;
    overflow: hidden;
}

.related-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post:hover .related-post-image {
    transform: scale(1.1);
}

.related-post-content {
    padding: 20px;
}

.related-post-title {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-post-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--light-blue);
}

.related-post-meta {
    color: #8892b0;
    font-size: 0.85rem;
}
/* ===== COMMENTS SECTION STYLES ===== */

/* Comments Area */
.comments-area {
    margin-top: 5rem;
    padding: 2.5rem;
    border-top: 2px solid rgba(100, 255, 218, 0.2);
    background: rgba(17, 34, 64, 0.3);
    border-radius: 1rem;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.comments-title {
    color: #ffffff;
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.comments-title span {
    color: var(--light-blue);
    font-style: italic;
}

.comments-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(100, 255, 218, 0.1);
    padding: 0.625rem 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.count-number {
    color: var(--light-blue);
    font-weight: 700;
    font-size: 1.25rem;
}

.count-text {
    color: #a8b2d1;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Comment Navigation */
.comment-navigation {
    margin: 2rem 0;
}

.comment-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
}

.nav-previous a,
.nav-next a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-blue);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 0.9375rem;
    font-weight: 500;
}

.nav-previous a:hover,
.nav-next a:hover {
    background: rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
    transform: translateY(-0.125rem);
}

/* Comments List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list > li {
    margin-bottom: 2rem;
}

.comment {
    background: rgba(17, 34, 64, 0.5);
    border-radius: 0.75rem;
    padding: 1.75rem;
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.comment:hover {
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.2);
}

.comment-avatar {
    position: absolute;
    left: 1.75rem;
    top: 1.75rem;
}

.comment-avatar-img {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    border: 2px solid rgba(100, 255, 218, 0.3);
    object-fit: cover;
}

.comment-content {
    margin-left: 5rem;
    min-height: 3.75rem;
}

.comment-header {
    margin-bottom: 1rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.375rem;
}

.author-name {
    color: #ffffff;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.author-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-name a:hover {
    color: var(--light-blue);
}

.comment-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.comment-time {
    color: #8892b0;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.comment-awaiting-moderation {
    color: #ffb347;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 179, 71, 0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
}

.comment-body {
    color: #a8b2d1;
    line-height: 1.7;
    font-size: 1.0625rem;
    margin-top: 1rem;
}

.comment-body p {
    margin: 0 0 1rem 0;
    line-height: 1.75;
}

.comment-body p:last-child {
    margin-bottom: 0;
}

.comment-actions {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    font-size: 0.9375rem;
}

.comment-reply-link,
.edit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(100, 255, 218, 0.1);
    padding: 0.5rem 0.875rem;
    border-radius: 0.375rem;
}

.comment-reply-link:hover,
.edit-link:hover {
    background: rgba(100, 255, 218, 0.2);
    color: #ffffff;
    transform: translateY(-0.125rem);
}

/* Nested Comments (Replies) */
.comment-list .children {
    list-style: none;
    padding-left: 2rem;
    margin-top: 1.5rem;
    border-left: 2px solid rgba(100, 255, 218, 0.1);
}

.comment-list .children .comment {
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.05);
    padding: 1.5rem;
}

.comment-list .children .comment-avatar-img {
    width: 3.125rem;
    height: 3.125rem;
}

.comment-list .children .comment-content {
    margin-left: 4.375rem;
    min-height: 3.125rem;
}

.comment-list .children .children {
    padding-left: 1.5rem;
}

/* Comments Closed Notice */
.comments-closed-notice {
    text-align: center;
    padding: 2.5rem;
    background: rgba(17, 34, 64, 0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 71, 87, 0.2);
    margin-top: 2rem;
}

.no-comments {
    color: #ff4757;
    font-size: 1.125rem;
    margin: 0;
    font-weight: 500;
}

/* Comment Form */
.comment-form-wrapper {
    margin-top: 3.5rem;
    padding: 2.5rem;
    background: rgba(17, 34, 64, 0.7);
    border-radius: 1rem;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.comment-form-title {
    color: #ffffff;
    font-size: 1.75rem;
    margin: 0 0 2rem 0;
    font-weight: 600;
}

.comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.comment-form .form-group {
    margin-bottom: 0;
}

.comment-form-author,
.comment-form-email {
    grid-column: span 1;
}

.comment-form-url,
.comment-form-comment {
    grid-column: 1 / -1;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.9375rem 1.25rem;
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 0.5rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: #8892b0;
    opacity: 0.8;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

.comment-form textarea {
    min-height: 10rem;
    resize: vertical;
    line-height: 1.6;
    padding: 1.125rem 1.25rem;
}

.required-indicator {
    color: #ff4757;
    margin-left: 0.25rem;
    font-weight: bold;
    font-size: 1.125rem;
}

.comment-notes {
    color: #8892b0;
    font-size: 0.9375rem;
    margin: -0.5rem 0 1.75rem 0;
    grid-column: 1 / -1;
    line-height: 1.5;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: right;
    margin-top: 0.625rem;
}

.comment-submit {
    background: var(--light-blue);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.0625rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-submit:hover {
    background: #ffffff;
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.625rem 1.5625rem rgba(100, 255, 218, 0.3);
}

/* Cancel Reply Link */
.cancel-comment-reply {
    margin-top: 1rem;
    grid-column: 1 / -1;
    text-align: center;
}

.cancel-comment-reply a {
    color: #ff4757;
    text-decoration: none;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 71, 87, 0.1);
    padding: 0.625rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cancel-comment-reply a:hover {
    background: rgba(255, 71, 87, 0.2);
    color: #ffffff;
}

.comment-form-notice {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.form-notice {
    color: #a8b2d1;
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 991px) {
    .comments-area {
        padding: 2rem;
        margin-top: 4rem;
    }
    
    .comments-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .comment-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comment-form-author,
    .comment-form-email {
        grid-column: 1 / -1;
    }
    
    .comment-form-wrapper {
        padding: 2rem;
    }
    
    .comment-form-title {
        font-size: 1.625rem;
    }
}

@media (max-width: 768px) {
    .comments-area {
        padding: 1.75rem;
        margin-top: 3rem;
    }
    
    .comments-title {
        font-size: 1.75rem;
        line-height: 1.4;
    }
    
    .comment {
        padding: 1.5rem;
    }
    
    .comment-avatar {
        position: static;
        margin-bottom: 1.25rem;
    }
    
    .comment-content {
        margin-left: 0;
        min-height: auto;
    }
    
    .comment-list .children {
        padding-left: 1.5rem;
    }
    
    .comment-form-wrapper {
        padding: 1.75rem;
    }
    
    .comment-form-title {
        font-size: 1.5rem;
        margin-bottom: 1.75rem;
    }
    
    .comment-form input,
    .comment-form textarea {
        font-size: 0.9375rem;
        padding: 0.875rem 1.125rem;
    }
    
    .comment-body {
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1.0625rem;
    }
    
    .comments-count {
        padding: 0.5rem 1rem;
    }
    
    .count-number {
        font-size: 1.125rem;
    }
    
    .count-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .comments-area {
        padding: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .comments-title {
        font-size: 1.5rem;
    }
    
    .comment-form-wrapper {
        padding: 1.5rem;
    }
    
    .comment-form-title {
        font-size: 1.375rem;
    }
    
    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comment-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .comment-list .children {
        padding-left: 1rem;
    }
    
    .form-submit {
        text-align: center;
    }
    
    .comment-submit {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .comment-form {
        gap: 1.25rem;
    }
    
    .comment-form input,
    .comment-form textarea {
        padding: 0.75rem 1rem;
    }
    
    .no-comments {
        font-size: 1rem;
    }
    
    .comments-closed-notice {
        padding: 1.75rem;
    }
    
    .comment-notes {
        font-size: 0.875rem;
    }
}

/* Tablet Landscape Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .comments-area {
        padding: 2.25rem;
    }
    
    .comment-form input,
    .comment-form textarea {
        font-size: 0.9375rem;
    }
}

/* ===== CATEGORY LIST - RESPONSIVE ===== */

/* Base/Mobile First Styles */
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(17, 34, 64, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.category-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: rgba(100, 255, 218, 0.1);
    color: var(--light-blue);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.2);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    flex-shrink: 0;
    max-width: 100%;
}

.category-item:hover {
    background: var(--light-blue);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
    border-color: var(--light-blue);
}

/* Active/Current Category */
.category-item.active {
    background: var(--light-blue);
    color: var(--dark-bg);
    font-weight: 600;
    border-color: var(--light-blue);
}

/* Category with count (if you add count later) */
.category-item .count {
    margin-left: 6px;
    font-size: 0.8em;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
}

/* ===== MEDIA QUERIES FOR ALL DEVICES ===== */

/* Extra Small Devices (320px - 375px) */
@media (max-width: 375px) {
    .category-list {
        gap: 8px;
        padding: 12px;
    }
    
    .category-item {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 16px;
        min-height: 32px;
    }
    
    /* Stack vertically on very small screens */
    .category-list.vertical-xs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-list.vertical-xs .category-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 15px;
    }
}

/* Small Mobile Devices (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
    .category-list {
        gap: 8px;
        padding: 12px;
    }
    
    .category-item {
        padding: 7px 14px;
        font-size: 0.82rem;
        flex: 0 1 calc(50% - 8px); /* 2 items per row */
    }
    
    /* Optional: Show 2 items per row */
    .category-list.two-per-row {
        justify-content: space-between;
    }
    
    .category-list.two-per-row .category-item {
        flex: 0 1 calc(50% - 8px);
        min-width: 0;
    }
}

/* Mobile Landscape & Small Tablets (481px - 600px) */
@media (min-width: 481px) and (max-width: 600px) {
    .category-list {
        gap: 10px;
        padding: 15px;
    }
    
    .category-item {
        padding: 8px 16px;
        font-size: 0.85rem;
        flex: 0 1 calc(33.333% - 10px); /* 3 items per row */
    }
    
    .category-item:hover {
        transform: translateY(-3px);
    }
}

/* Tablets (601px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    .category-list {
        gap: 12px;
        padding: 18px;
        border-radius: 12px;
    }
    
    .category-item {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 22px;
        flex: 0 1 calc(33.333% - 12px); /* 3 items per row */
    }
    
    /* Optional: Auto-fit for tablet */
    .category-list.auto-fit {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Large Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .category-list {
        gap: 15px;
        padding: 20px;
        margin: 25px 0;
    }
    
    .category-item {
        padding: 10px 22px;
        font-size: 0.92rem;
        flex: 0 1 calc(25% - 15px); /* 4 items per row */
        border-radius: 24px;
    }
    
    .category-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(100, 255, 218, 0.25);
    }
    
    /* Grid layout option */
    .category-list.grid-layout {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

/* Small Desktops (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
    .category-list {
        gap: 15px;
        padding: 22px;
        margin: 30px 0;
        border-radius: 14px;
    }
    
    .category-item {
        padding: 12px 24px;
        font-size: 0.95rem;
        flex: 0 1 calc(20% - 15px); /* 5 items per row */
        border-radius: 25px;
    }
    
    /* Hover effects for desktop */
    .category-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
    }
}

/* Desktop (1201px - 1440px) */
@media (min-width: 1201px) and (max-width: 1440px) {
    .category-list {
        gap: 18px;
        padding: 25px;
        margin: 35px 0;
        border-radius: 16px;
    }
    
    .category-item {
        padding: 12px 26px;
        font-size: 1rem;
        flex: 0 1 calc(16.666% - 18px); /* 6 items per row */
        border-radius: 26px;
    }
    
    /* Optional: Different layouts */
    .category-list.six-per-row {
        justify-content: flex-start;
    }
    
    .category-list.four-per-row .category-item {
        flex: 0 1 calc(25% - 18px);
    }
}

/* Large Desktops (1441px - 1920px) */
@media (min-width: 1441px) and (max-width: 1920px) {
    .category-list {
        gap: 20px;
        padding: 30px;
        margin: 40px 0;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .category-item {
        padding: 14px 28px;
        font-size: 1.05rem;
        flex: 0 1 calc(14.285% - 20px); /* 7 items per row */
        border-radius: 28px;
    }
    
    /* Grid layout for large screens */
    .category-list.grid-auto {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Extra Large Screens (1921px and above) */
@media (min-width: 1921px) {
    .category-list {
        gap: 22px;
        padding: 35px;
        margin: 45px auto;
        max-width: 1600px;
        border-radius: 20px;
    }
    
    .category-item {
        padding: 15px 30px;
        font-size: 1.1rem;
        flex: 0 1 calc(12.5% - 22px); /* 8 items per row */
        border-radius: 30px;
    }
    
    .category-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(100, 255, 218, 0.35);
    }
}

/* ===== SPECIAL LAYOUT OPTIONS ===== */

/* Compact Layout */
.category-list.compact {
    padding: 10px;
    gap: 8px;
}

.category-list.compact .category-item {
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* Spacious Layout */
.category-list.spacious {
    padding: 25px;
    gap: 20px;
}

.category-list.spacious .category-item {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Vertical Layout */
.category-list.vertical {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.category-list.vertical .category-item {
    width: 100%;
    justify-content: flex-start;
    padding-left: 20px;
    text-align: left;
    border-radius: 10px;
}

/* Horizontal Scroll Layout (for many categories) */
.category-list.scrollable {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--light-blue) transparent;
}

.category-list.scrollable::-webkit-scrollbar {
    height: 6px;
}

.category-list.scrollable::-webkit-scrollbar-track {
    background: rgba(100, 255, 218, 0.1);
    border-radius: 3px;
}

.category-list.scrollable::-webkit-scrollbar-thumb {
    background: var(--light-blue);
    border-radius: 3px;
}

.category-list.scrollable .category-item {
    flex-shrink: 0;
}

/* Grid Layout */
.category-list.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* Masonry Layout */
.category-list.masonry {
    column-count: 2;
    column-gap: 15px;
}

.category-list.masonry .category-item {
    break-inside: avoid;
    margin-bottom: 15px;
}

/* ===== ORIENTATION SPECIFIC ===== */

/* Portrait Orientation */
@media (orientation: portrait) and (max-width: 768px) {
    .category-list {
        padding: 15px;
    }
    
    .category-item {
        flex: 0 1 calc(50% - 10px); /* 2 columns in portrait */
    }
}

/* Landscape Orientation for Mobile */
@media (orientation: landscape) and (max-width: 900px) {
    .category-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .category-item {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

/* ===== DARK/LIGHT MODE SUPPORT ===== */
@media (prefers-color-scheme: light) {
    .category-list {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.1);
    }
    
    .category-item {
        background: rgba(0, 100, 200, 0.1);
        color: #0066cc;
        border-color: rgba(0, 100, 200, 0.2);
    }
    
    .category-item:hover {
        background: #0066cc;
        color: white;
        border-color: #0066cc;
    }
    
    .category-item.active {
        background: #0066cc;
        color: white;
        border-color: #0066cc;
    }
}

@media (prefers-color-scheme: dark) {
    /* Already dark by default */
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .category-list {
        border: 2px solid #ffff00;
    }
    
    .category-item {
        background: #000;
        color: #ffff00;
        border: 2px solid #ffff00;
    }
    
    .category-item:hover {
        background: #ffff00;
        color: #000;
        border-color: #ffff00;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .category-item {
        transition: none;
        transform: none !important;
    }
    
    .category-item:hover {
        transform: none !important;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .category-item {
        min-height: 44px; /* Minimum touch target size */
        min-width: 44px;
        padding: 12px 20px; /* Larger touch area */
    }
    
    .category-item:active {
        background: var(--light-blue);
        color: var(--dark-bg);
        transform: scale(0.98);
    }
    
    /* Remove hover effects on touch devices */
    .category-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ===== RETINA DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .category-item {
        border-width: 1.5px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .category-list {
        display: none; /* Usually hide in print */
    }
    
    /* If you want to show in print */
    .category-list.print-visible {
        display: flex;
        border: 1px solid #000;
        background: none;
        page-break-inside: avoid;
    }
    
    .category-list.print-visible .category-item {
        background: none;
        color: #000;
        border: 1px solid #000;
        box-shadow: none;
    }
}

/* ===== ANIMATION VARIANTS ===== */

/* Fade In Animation */
@keyframes fadeInCategory {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-item.animated {
    animation: fadeInCategory 0.3s ease forwards;
    opacity: 0;
}

/* Stagger animation for items */
.category-list.stagger .category-item {
    animation: fadeInCategory 0.3s ease forwards;
    opacity: 0;
}

.category-list.stagger .category-item:nth-child(1) { animation-delay: 0.05s; }
.category-list.stagger .category-item:nth-child(2) { animation-delay: 0.1s; }
.category-list.stagger .category-item:nth-child(3) { animation-delay: 0.15s; }
.category-list.stagger .category-item:nth-child(4) { animation-delay: 0.2s; }
.category-list.stagger .category-item:nth-child(5) { animation-delay: 0.25s; }
.category-list.stagger .category-item:nth-child(6) { animation-delay: 0.3s; }
.category-list.stagger .category-item:nth-child(7) { animation-delay: 0.35s; }
.category-list.stagger .category-item:nth-child(8) { animation-delay: 0.4s; }
.category-list.stagger .category-item:nth-child(9) { animation-delay: 0.45s; }
.category-list.stagger .category-item:nth-child(10) { animation-delay: 0.5s; }

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */

/* Focus states for keyboard navigation */
.category-item:focus {
    outline: 2px solid var(--light-blue);
    outline-offset: 2px;
    background: var(--light-blue);
    color: var(--dark-bg);
}

/* Screen reader only text */
.category-item .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading state */
.category-list.loading {
    position: relative;
    min-height: 100px;
}

.category-list.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(100, 255, 218, 0.3);
    border-top-color: var(--light-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Empty state */
.category-list:empty::before {
    content: 'No categories found';
    text-align: center;
    color: #8892b0;
    font-style: italic;
    padding: 20px;
    width: 100%;
    display: block;
}

/* ===== UTILITY CLASSES ===== */

/* Alignment */
.category-list.center {
    justify-content: center;
}

.category-list.right {
    justify-content: flex-end;
}

.category-list.space-between {
    justify-content: space-between;
}

.category-list.space-around {
    justify-content: space-around;
}

/* Border variations */
.category-list.border-none {
    border: none;
}

.category-list.border-thick {
    border-width: 2px;
}

/* Shadow variations */
.category-list.shadow-light {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-list.shadow-strong {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-list.shadow-glow {
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.1);
}

/* Background variations */
.category-list.bg-transparent {
    background: transparent;
}

.category-list.bg-solid {
    background: var(--dark-blue);
}

.category-list.bg-gradient {
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
}

/* Responsive utility classes */
@media (max-width: 768px) {
    .category-list.mobile-vertical {
        flex-direction: column;
    }
    
    .category-list.mobile-hide {
        display: none;
    }
}

@media (min-width: 769px) {
    .category-list.desktop-only {
        display: flex;
    }
}
/* ===== PORTFOLIO HOME STYLES ===== */

/* Preloader */
.portfolio-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(100, 255, 218, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: 15px;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: none;
}

@media (min-width: 992px) {
    .floating-nav {
        display: block;
    }
}

.floating-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(17, 34, 64, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 10px;
    border-radius: 25px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.floating-nav-item {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #8892b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.floating-nav-item:hover,
.floating-nav-item.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateX(-5px);
}

.floating-nav-item[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    margin-right: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-nav-item:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-left {
    text-align: center;
}

.profile-image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 40px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-color);
    border: 5px solid var(--primary-color);
}

.profile-border-animation {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    z-index: 1;
}

.profile-border-animation span {
    position: absolute;
    left: 0;

    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
}

.profile-border-animation span:nth-child(1) {
    border-top-color: var(--primary-color);
    animation: rotate1 2s linear infinite;
}

.profile-border-animation span:nth-child(2) {
    border-right-color: var(--primary-color);
    animation: rotate2 3s linear infinite;
}

.profile-border-animation span:nth-child(3) {
    border-bottom-color: var(--primary-color);
    animation: rotate1 4s linear infinite;
}

.profile-border-animation span:nth-child(4) {
    border-left-color: var(--primary-color);
    animation: rotate2 5s linear infinite;
}

@keyframes rotate1 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate2 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.status-badge {
    position: absolute;
    bottom: 25px;
    right: -69px;
    background: rgba(100, 255, 219, 0.281);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.quick-stat {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.quick-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.stat-label {
    font-size: 0.9rem;
    color: #8892b0;
    margin: 0;
}

.hero-right {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    color: #a8b2d1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.expertise-tags .tag {
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-download-cv {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download-cv:hover {
    gap: 15px;
}

.hero-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: rgba(100, 255, 218, 0.3);
}

.divider-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.section-description {
    color: #8892b0;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px 20px;
    border-radius: 5px;
    text-align: center;
    min-width: 120px;
}

.exp-years {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    color: #a8b2d1;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
}

.personal-info-grid {
    background: rgba(17, 34, 64, 0.5);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(100, 255, 218, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .personal-info-grid {
        grid-template-columns: 1fr;
    }
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.info-label {
    color: #8892b0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-value {
    color: white;
    font-weight: 500;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(17, 34, 64, 0.5);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #8892b0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--dark-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(17, 34, 64, 0.5);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.service-description {
    color: #8892b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    color: #a8b2d1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    color: #8892b0;
    border: 1px solid rgba(100, 255, 218, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background: rgba(17, 34, 64, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-thumbnail {
    transform: scale(1.1);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: scale(1.1);
}

.project-content {
    padding: 25px;
}

.project-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-category {
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.project-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-excerpt {
    color: #8892b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(136, 146, 176, 0.1);
    color: #8892b0;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(136, 146, 176, 0.2);
}

.projects-cta {
    text-align: center;
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
    background: var(--dark-blue);
}

.skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 992px) {
    .skills-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.category-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(100, 255, 218, 0.3);
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    color: white;
    font-weight: 500;
}

.skill-percentage {
    color: var(--primary-color);
    font-weight: 600;
}

.skill-bar {
    height: 8px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.skill-tag {
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateY(-3px);
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(100, 255, 218, 0.05) 0%, transparent 70%);
}

.philosophy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.5;
}

.philosophy-quote {
    margin: 0 0 30px 0;
    padding: 0;
    border: none;
}

.philosophy-quote p {
    font-size: 2.2rem;
    font-style: italic;
    color: white;
    line-height: 1.4;
    font-weight: 300;
}

.philosophy-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.author-name {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.author-title {
    color: #8892b0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--dark-blue);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: rgba(17, 34, 64, 0.5);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.form-title,
.info-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(100, 255, 218, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 4px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.1);
}

.form-group textarea {
    padding: 15px 15px 15px 45px;
    min-height: 150px;
    resize: vertical;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    pointer-events: none;
}

.form-group textarea + .form-icon {
    top: 25px;
    transform: none;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-response {
    margin-top: 20px;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
}

.alert.success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.alert.error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.contact-info {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content a,
.info-content p {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-color);
}

.availability-status {
    background: rgba(100, 255, 218, 0.05);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-text {
    color: white;
    font-weight: 500;
}

.status-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8892b0;
    font-size: 0.9rem;
}

.status-item i {
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget h3,
.footer-widget h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-description {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.copyright p {
    color: #8892b0;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .philosophy-quote p {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        text-align: center;
        justify-content: center;
    }
    
    .hero-quick-stats {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials section */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark-blue);
}
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}
.testimonials-header .section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}
.testimonials-header .section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.testimonials-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}
.testimonials-header .section-description {
    color: #8892b0;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: rgba(17, 34, 64, 0.5);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}
.testimonial-content {
    color: #8892b0;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}
.author-info {
    display: flex;
    flex-direction: column;
}
.author-name {
    color: white;
    font-weight: 600;
}
.author-title {
    color: #8892b0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}





/* ===== PAGE-SPECIFIC STYLES ===== */

/* Page Hero - Common for all pages */
.page-hero {
    text-align: center;
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    border-radius: 0 0 20px 20px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(100,255,218,0.05)"/></svg>');
    background-size: cover;
}

.page-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #a8b2d1;
    max-width: 600px;
    margin: 0 auto 30px;
}

.page-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.page-divider .line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
}

.page-divider .icon {
    color: var(--light-blue);
    font-size: 1.5rem;
}

/* About Page Specific */
.about-page-section .about-intro {
    padding: 60px 0;
}

.about-intro .intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.intro-text h2 .highlight {
    color: var(--light-blue);
}

.profile-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.profile-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--light-blue);
    color: var(--dark-bg);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
}

.exp-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detailed-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.info-block {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.info-block h3 {
    color: var(--light-blue);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(100, 255, 218, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list .info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-list .info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    color: #8892b0;
}

.info-row .value {
    color: #ffffff;
    font-weight: 500;
}

.expertise-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.expertise-item:last-child {
    border-bottom: none;
}

.expertise-icon {
    color: var(--light-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.expertise-details h4 {
    color: #ffffff;
    margin-bottom: 5px;
}

.expertise-details p {
    color: #8892b0;
    font-size: 0.9rem;
    margin: 0;
}

/* Journey Timeline */
.journey-section {
    margin: 80px 0;
}

.section-heading {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    text-align: center;
    color: var(--light-blue);
    font-weight: 600;
    padding: 5px 10px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 20px;
}

.timeline-content {
    background: rgba(17, 34, 64, 0.7);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.timeline-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #a8b2d1;
    margin: 0;
}

/* Education Section */
.education-section {
    margin: 80px 0;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.education-card {
    background: rgba(17, 34, 64, 0.7);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-blue);
}

.edu-icon {
    font-size: 2.5rem;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.education-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.institution {
    color: var(--light-blue);
    font-weight: 500;
    margin-bottom: 5px;
}

.year {
    color: #8892b0;
    font-size: 0.9rem;
}

/* Philosophy Section */
.philosophy-section {
    margin: 80px 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.philosophy-item {
    text-align: center;
    padding: 30px;
    background: rgba(17, 34, 64, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.phil-icon {
    font-size: 2.5rem;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.philosophy-item h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.philosophy-item p {
    color: #a8b2d1;
    margin: 0;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    border-radius: 20px;
    margin-top: 60px;
}

.about-cta h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.about-cta p {
    color: #a8b2d1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Contact Page Specific */
.contact-overview {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.overview-text h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.overview-text p {
    color: #a8b2d1;
    line-height: 1.7;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.overview-stats .stat {
    text-align: center;
    padding: 20px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.stat-number {
    font-size: 1.8rem;
    color: var(--light-blue);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stat-label {
    color: #8892b0;
    font-size: 0.9rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-section,
.contact-info-section {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.form-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-header p {
    color: #8892b0;
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h4 {
    color: var(--light-blue);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #a8b2d1;
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(10, 25, 47, 0.8);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.file-upload input[type="file"] {
    padding: 10px;
    background: rgba(100, 255, 218, 0.1);
    border: 2px dashed rgba(100, 255, 218, 0.3);
}

.file-upload small {
    display: block;
    color: #8892b0;
    font-size: 0.85rem;
    margin-top: 8px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-note label {
    color: #a8b2d1;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-submit {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.contact-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: rgba(10, 25, 47, 0.8);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--light-blue);
    transform: translateY(-5px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-content h4 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-link {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.contact-link:hover {
    text-decoration: underline;
}

.card-note {
    color: #8892b0;
    font-size: 0.85rem;
    margin: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.social-connect {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-connect h4 {
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: var(--light-blue);
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.social-link:hover {
    background: rgba(100, 255, 218, 0.2);
    border-color: var(--light-blue);
    transform: translateY(-5px);
}

.social-link i {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.social-link span {
    font-size: 0.9rem;
}

.contact-faq {
    margin-bottom: 40px;
}

.contact-faq h4 {
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-list {
    display: grid;
    gap: 15px;
}

.faq-item {
    background: rgba(10, 25, 47, 0.8);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.faq-question {
    padding: 15px;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    background: rgba(100, 255, 218, 0.05);
}

.faq-answer {
    padding: 15px;
    color: #a8b2d1;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.quick-contact-bar {
    background: rgba(17, 34, 64, 0.9);
    border-radius: 15px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-method i {
    font-size: 2rem;
    color: var(--light-blue);
}

.method-info h5 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.schedule-link,
.download-link {
    color: var(--light-blue);
    text-decoration: none;
    font-size: 0.95rem;
}

.schedule-link:hover,
.download-link:hover {
    text-decoration: underline;
}

.status {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Pricing Page Specific */
.pricing-intro {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 60px;
}

.pricing-intro h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.pricing-intro p {
    color: #a8b2d1;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.toggle-label {
    color: #8892b0;
    font-weight: 500;
}

.toggle-label.active {
    color: var(--light-blue);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(100, 255, 218, 0.3);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--light-blue);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-plan {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 15px;
    padding: 40px 30px;
    border: 2px solid rgba(100, 255, 218, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-plan.featured {
    border-color: var(--light-blue);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-plan:hover:not(.featured) {
    border-color: var(--light-blue);
    transform: translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-blue);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-badge.best-value {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    color: white;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.plan-price {
    color: var(--light-blue);
    margin-bottom: 15px;
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: #8892b0;
}

.plan-description {
    color: #a8b2d1;
    font-size: 0.95rem;
    margin: 0;
}

.plan-features {
    margin-bottom: 40px;
}

.plan-features h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    color: #a8b2d1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i.fa-check {
    color: var(--light-blue);
}

.plan-features li i.fa-times {
    color: #ff6b6b;
}

.not-included {
    opacity: 0.6;
    text-decoration: line-through;
}

.plan-footer {
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--light-blue);
    color: var(--light-blue);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--light-blue);
    color: var(--dark-bg);
}

.delivery-time {
    color: #8892b0;
    font-size: 0.9rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.comparison-section {
    margin: 80px 0;
}

.comparison-table {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: rgba(100, 255, 218, 0.1);
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid rgba(100, 255, 218, 0.2);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    color: #a8b2d1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: left;
    color: #ffffff;
    font-weight: 500;
}

.comparison-table i.fa-check {
    color: var(--light-blue);
}

.comparison-table i.fa-times {
    color: #ff6b6b;
}

.addons-section {
    margin: 80px 0;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.addon-card {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: var(--light-blue);
    transform: translateY(-10px);
}

.addon-icon {
    font-size: 2.5rem;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.addon-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.addon-price {
    color: var(--light-blue);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.addon-card p {
    color: #a8b2d1;
    margin: 0;
    font-size: 0.95rem;
}

.pricing-faq {
    margin: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #a8b2d1;
    margin: 0;
    line-height: 1.6;
}

.pricing-cta {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-top: 60px;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: #a8b2d1;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.btn-large {
    padding: 15px 50px;
    font-size: 1.2rem;
}

/* Services Page Specific */
.services-overview {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8), rgba(35, 53, 84, 0.8));
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.overview-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.overview-content p {
    color: #a8b2d1;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 40px;
}

.overview-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.overview-stats .stat {
    text-align: center;
}

.overview-stats .number {
    display: block;
    font-size: 2.5rem;
    color: var(--light-blue);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.overview-stats .label {
    color: #8892b0;
    font-size: 0.95rem;
}

.core-services {
    margin: 80px 0;
}

.service-category {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(100, 255, 218, 0.2);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-blue);
    flex-shrink: 0;
}

.category-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0;
}

.service-details p {
    color: #a8b2d1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.service-features li {
    color: #a8b2d1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--light-blue);
}

.tech-stack {
    margin-bottom: 30px;
}

.tech-stack h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tags .tag {
    background: rgba(100, 255, 218, 0.1);
    color: var(--light-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.btn-service {
    display: inline-block;
    background: var(--light-blue);
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-service:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.specialized-services {
    margin: 80px 0;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.specialized-card {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.specialized-card:hover {
    border-color: var(--light-blue);
    transform: translateY(-10px);
}

.specialized-card .card-icon {
    font-size: 2.5rem;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.specialized-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.specialized-card p {
    color: #a8b2d1;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.card-features li {
    color: #8892b0;
    padding: 5px 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.card-features li::before {
    content: '•';
    color: var(--light-blue);
    position: absolute;
    left: 0;
}

.process-section {
    margin: 80px 0;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-blue);
    opacity: 0.3;
}

.process-step {
    position: relative;
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--light-blue);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    padding-top: 20px;
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.step-content p {
    color: #a8b2d1;
    margin: 0;
    line-height: 1.6;
}

.case-studies {
    margin: 80px 0;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-card {
    background: rgba(17, 34, 64, 0.7);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: var(--light-blue);
    transform: translateY(-10px);
}

.case-image {
    height: 200px;
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--light-blue);
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.case-content p {
    color: #a8b2d1;
    margin-bottom: 20px;
    line-height: 1.6;
}

.case-results {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.case-results .result {
    background: rgba(100, 255, 218, 0.1);
    color: var(--light-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.services-cta {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-top: 60px;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: #a8b2d1;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .intro-content,
    .detailed-info-grid,
    .contact-layout,
    .contact-overview {
        grid-template-columns: 1fr;
    }
    
    .pricing-plan.featured {
        transform: none;
    }
    
    .pricing-plans {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .page-hero,
    .about-cta,
    .pricing-cta,
    .services-cta {
        padding: 40px 20px;
    }
    
    .form-row,
    .overview-stats,
    .quick-contact-bar {
        grid-template-columns: 1fr;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .service-category,
    .contact-form-section,
    .contact-info-section,
    .info-block,
    .pricing-plan {
        padding: 25px 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
}