/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Announcement Bar */
.announcement-bar {
    font-family: 'Nunito Sans', sans-serif;
    background: black;
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.announcement-bar a {
    color: #f1c40f;
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.5rem;
}

.announcement-bar a:hover {
    text-decoration: underline;
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-content-item {
    display: flex;
    align-items: center;
    gap: 30px;
    line-height: 1;
}

.announcement-content-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.5rem;
}

.announcement-content-item li:first-child {
    list-style: none;
}

/* Main Header */
.main-header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    letter-spacing: -0.5px;
}

.logo a {
    width: 200px;
    display: block;
    height: 100%;
    line-height: 10px;
}

.logo-image {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.desktop-nav {
    margin-right: 50px;
}

.desktop-nav a {
    color: #000;
    z-index: 1;
    text-decoration: none;
    font-weight: 800;
    font-size: .9rem;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Nunito Sans', sans-serif;
}

.desktop-nav a:hover {
    color: #313bc5;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #313bc5;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.quote-social-links {
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 50px;
    min-width: 50px;
}

.social-links li {
    list-style: none;
}

.social-links a i {
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

.social-section {
    margin-top: 4rem;
}

.social-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
}

.nav-slice {
    top: -1px;
    right: -1px;
    left:65%;
    bottom: -1px;
    background: linear-gradient(178deg, #293fbf, #322471);;
    position: absolute;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}

.nav-slice img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: invert(1);
    opacity: 0.06;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 2222;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background-color: white;
    border-top: 1px solid #ecf0f1;
    padding: 1rem 0;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-right: 3.26rem;
}

.mobile-nav ul li {
    box-shadow: -9px 9px 0px #2F2470;
    border: 1px solid #2F2470;
}

.mobile-nav ul li:first-child {
    box-shadow: -9px 9px 0px #3039b8;
    border: 1px solid #3039b8;
}

.mobile-nav ul li:nth-child(2) {
    box-shadow: -9px 9px 0px #232a88;
    border: 1px solid #232a88;
}

.mobile-nav ul li:last-child {
    box-shadow: -9px 9px 0px #151950;
    border: 1px solid #151950;
}

.mobile-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 800;
    font-size: .85rem;
    font-family: 'Nunito Sans', sans-serif;
    text-transform: uppercase;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #e74c3c;
}

/* Hero section */

.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/pizza-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Hero Carousel */
.hero--with-carousel {
    background: none;
    padding: 0;
}

.hero-carousel {
    position: relative;
    height: 75vh;
    min-height: 380px;
    overflow: hidden;
    color: white;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(1 5 47 / 35%), rgb(2 3 16 / 35%));
    display: flex;
    align-items: center;
}

.slide-content {
    color: white;
    text-align: center;
    max-width: 550px;
    z-index: 555;
    position: relative;
}

.slide-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
    line-height: 60px;
}

.slide-content p {
    font-size: 1.3rem;
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
    line-height: 24px;
}

/* Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.carousel-control:hover {
    background: rgba(0,0,0,0.6);
}

.carousel-control.prev { left: 16px; }
.carousel-control.next { right: 16px; }

/* Indicators */
.carousel-indicators {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
}

.carousel-indicators .indicator.active {
    background: #fff;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #232a88c7, #3039b8bf);
    backdrop-filter: blur(5px);
    border: 1px solid rgb(95 161 255 / 30%);
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.13);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    font-size: .75rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(235deg, #1a2066, #2530a0);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.24);
    transform: translateY(-2px);
}

/* About us */
.about-us {
    padding: 4rem 0;
    overflow: hidden;
}
.about-us-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.about-us-content-image {
    width: 450px;
    height: 550px;
    position: relative;
}

.about-us-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-content-image::before {
    content: '';
    background-image: url('/assets/decor.png');
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1222;
    width: 30px;
    height: 300px;
    left: -40px;
}

.about-us-content-text {
    max-width: 500px;
    margin-right: auto;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;  
}

.about-us-content-text .subheader {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    color: #3754FA;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    border-radius: 50px;
    margin-bottom: -10px;
}

.about-us-content-text h2 {
    line-height:38px;
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
}

.about-us-content-text ul {
    margin-bottom: 20px;
}

.about-us-content-text ul li {
    background: url('/assets/drop.png') no-repeat -1px 3px transparent;
    background-size: 30px;  
    list-style-type: none;
    margin: 0;
    padding: 0px 0px 1px 44px;
    margin-bottom: 20px;
}

.about-us-list-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.about-us-list-description {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Nunito Sans', sans-serif;
}

.about-us-cta-button-container {
    position: relative;
}

.about-us-cta-button {
    background: linear-gradient(135deg, #0e1141ee, #1a26c7cc);
}

.about-us-cta-button-arrow {
    position: absolute;
    width: 100%;
    right: -185px;
    top: -40px;
    z-index: 1222;
    transform: rotate(153deg);
    filter: brightness(0) saturate(100%) invert(15%) sepia(55%) saturate(3974%) hue-rotate(228deg) brightness(90%) contrast(92%);
}
/* Main content */
main {
}

/* Quick Links Section */
.quick-links {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Header Section */
.quick-links-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.quick-links-header-left .subheader {
    color: #3754FA;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.quick-links-header-left h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.quick-links-description {
    font-family: 'Nunito Sans', sans-serif;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Carousel Wrapper */
.quick-links-swiper-wrapper {
    position: relative;
    padding: 0 60px;
}

.quick-links-swiper {
    overflow: visible;
}

/* Mask the sides with pseudo-elements */
.quick-links-swiper-wrapper::before,
.quick-links-swiper-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.quick-links-swiper-wrapper::before {
    left: -15px;
}

.quick-links-swiper-wrapper::after {
    right: -15px;
    background: linear-gradient(270deg, #f8f9fa 0%, transparent 100%);
}

.quick-links-swiper .swiper-slide {
    height: auto;
}

.quick-links-swiper .swiper-wrapper {
    padding: 20px 0;
    will-change: auto;
}

/* Quick Link Cards */
.quick-link-card {
    font-family: 'Nunito Sans', sans-serif;
    background-color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background-clip: padding-box;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, #202457, #3754FA);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    z-index: 10;
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3754FA, #202457);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.1);
}

.quick-link-card h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
}

/* Navigation arrows */
.quick-links-nav-prev,
.quick-links-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e0e0e0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: #2c3e50;
}

.quick-links-nav-prev:hover,
.quick-links-nav-next:hover {
    background: #3754FA;
    border-color: #3754FA;
    color: white;
    box-shadow: 0 6px 20px rgba(55, 84, 250, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.quick-links-nav-prev {
    left: 5px;
}

.quick-links-nav-next {
    right: 5px;
}

.quick-links-nav-prev.swiper-button-disabled,
.quick-links-nav-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quick-links-nav-prev.swiper-button-disabled:hover,
.quick-links-nav-next.swiper-button-disabled:hover {
    background: white;
    border-color: #e0e0e0;
    color: #2c3e50;
    transform: translateY(-50%) scale(1);
}

/* Scrolling Numbers */
.numbers {
    background: linear-gradient(135deg, #0e1141ee, #1a26c7cc);
    color: white;
    padding: 2rem 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.numbers.floating {
    max-width: 1200px;
    margin: auto;
    padding: 30px 60px;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.numbers-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    position: relative;
}

.numbers-item {
    text-align: center;
}

.numbers-item h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.numbers-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: invert(1);
    opacity: 0.03;
}

/* Gallery */
.gallery {
    padding: 4rem 0;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    font-family: 'Nunito Sans', sans-serif;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #ecf0f1;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-left .subheader {
    color: #3754FA;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.faq-left h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-left h2 span {
    color: #7c3aed;
    display: block;
}

.faq-description {
    font-family: 'Nunito Sans', sans-serif;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    background: white;
    border: none;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #3754FA;
}

.faq-question:focus {
    outline: 3px solid #3754FA;
    outline-offset: -6px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3754FA;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: #202457;
}

.faq-answer {
    overflow: hidden;
    transition: height 0.15s ease-in-out;
    height: 0;
}

.faq-answer[hidden] {
    display: block;
}

.faq-answer p {
    font-family: 'Nunito Sans', sans-serif;
    color: #666;
    line-height: 1.7;
    margin: 0;
    padding: 0.75rem 1.75rem 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header .subheader {
    color: #3754FA;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
}

.testimonials-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #ecf0f1;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.testimonial-rating {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating .star {
    font-size: 1.25rem;
    line-height: 1;
    color: #ffc107;
}

.testimonial-rating .star-empty {
    color: #e0e0e0;
}

.testimonial-text {
    font-family: 'Nunito Sans', sans-serif;
    color: #2c3e50;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.testimonial-name {
    font-family: 'Nunito Sans', sans-serif;
    color: #3754FA;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    text-align: right;
}

/* Hours */
.hours {
    margin-bottom: 4rem;
}

.hours h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.day {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #ecf0f1;
    transition: all 0.3s ease;
}

.day:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.day-name {
    font-weight: 600;
    color: #2c3e50;
}

.hours {
    font-weight: 500;
    color: #1a26c7cc;
}

/* Menu styles */
.menu {
    padding: 4rem 0;
}

.menu-heading {
    text-align: center;
    margin: 3rem 0;
    color: #2c3e50;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}
.menu-category {
    margin-bottom: 4rem;
}

.menu-category h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #1a26c7cc;
    padding-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
}

.menu-items {
    display: grid;
    gap: 1.5rem;
}

.menu-item {
    font-family: 'Nunito Sans', sans-serif;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #ecf0f1;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price {
    font-weight: 600;
    color: #1a26c7cc;
    font-size: 1.2rem;
}

.description {
    color: #7f8c8d;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0 4rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-intro {
    font-family: 'Nunito Sans', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Nunito Sans', sans-serif;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3754FA;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0e1141ee, #1a26c7cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
}

.contact-info-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-family: 'Nunito Sans', sans-serif;
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #3754FA;
}

/* Contact Map */
.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    display: block;
    width: 100%;
}

/* Footer */
.main-footer {
    background-color: #000;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.footer-section p {
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 0.75rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section strong {
    color: #1a26c7cc;
    font-weight: 600;
}

.footer-hours {
    font-family: 'Nunito Sans', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(236, 240, 241, 0.1);
}

.footer-day:last-child {
    border-bottom: none;
}

.footer-day span:first-child {
    font-weight: 500;
    color: #ecf0f1;
}

.footer-day span:last-child {
    color: #1a26c7cc;
    font-weight: 600;
}

/* Copyright Bar */
.copyright-bar {
    background: linear-gradient(360deg, #181445, #1c2a95);
    color: white;
    padding: 1rem 0;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.made-by {
    font-weight: 500;
    color: #1a26c7cc;
}

.brand-name {
    font-size: .8rem;
    font-weight: 700;
    color: #1a26c7cc;
}

.copyright {
    font-weight: 400;
}

/* Inner Hero */
.inner-hero {
    background-color: #424242;
    padding: 4rem 0;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    z-index: 2;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    z-index: -1;
}

.inner-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 60px;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    background-color: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 4px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #ffffff;
}

.breadcrumbs a {
    color: #005eff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #080bf3;
}

.breadcrumbs li[aria-current="page"] {
    color: #fff;
    font-weight: 600;
}

@media only screen and (min-width: 2000px) {
    .nav-slice {left: 60%;}
}

@media only screen and (min-width: 1800px) and (max-width: 2000px) {
    .nav-slice {left: 64%;}
}

@media only screen and (min-width: 1400px) and (max-width: 1800px) {
    .nav-slice {left: 66%;}
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .nav-slice {left: 69%;}
}

@media only screen and (max-width: 1200px) {
    .about-us-content-image::before {
        display: none;
    }
    .quick-link-card {
        flex: 0 0 calc(33.333% - 1rem); /* 3 items */
        min-width: calc(33.333% - 1rem);
    }
}

@media only screen and (max-width: 1024px) {
    .logo a {width: 250px !important;}
    .nav-slice {left: 82%;}
    .social-links {display: none;}

    .header-content {
        padding: 1rem 0;
    }

    .quick-links-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-links-header-left h2 {
        font-size: 2rem;
    }

    .social-links {
        margin-left: 0;
    }
    
    .social-links a i {
        display: none;
        color:#313bc5;
    }

    .logo h1 {
        font-size: 1.8rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        transition: all 0.3s ease;
        display: none;
    }
    
    .mobile-nav.active {
        transition: all 0.3s ease;
        display: block;
    }

    .nav-slice {left:90%;}
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

    .faq-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-left {
        position: static;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-sidebar {
        flex-direction: row;
        gap: 1rem;
    }
    
    .contact-info-card {
        flex: 1;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links h2,
    .hours h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-day {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .copyright-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    .nav-slice {left:88%;}
    .announcement-content .announcement-content-item:first-child {
        display: flex;
        justify-content: space-between;
        width: 100%;
        list-style: none;
    }
    .announcement-content .announcement-content-item:last-child {
        display: none;
    }
    .about-us-content-text .subheader {
        font-size: 0.8rem;
    }
    .about-us-content-text h2 {
        font-size: 1.5rem;
    }

    .about-us-list-title {
        font-size: 1rem;
    }
    .about-us-content-text ul li {
        background-size: 20px;
    }

    .about-us-content-text ul li {
        padding: 0 0 1px 34px;
    }

    .hero-carousel { height: 48vh; min-height: 300px; }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }

    .carousel-control {
        top: 90%;
    }

    .slide-content h1 {
        line-height: 44px;
        margin-bottom: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .gallery h2 {
        font-size: 2rem;
    }
    .quick-links {
        padding: 3rem 0;
    }
    
    .quick-links-swiper-wrapper {
        padding: 0 50px;
    }
    
    .quick-links-nav-prev,
    .quick-links-nav-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-left h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.25rem;
    }

    .contact-section {
        padding: 2rem 0 3rem;
    }
    
    .contact-form-wrapper h2 {
        font-size: 2rem;
    }
    
    .contact-info-sidebar {
        flex-direction: column;
    }
    
    .contact-map iframe {
        height: 300px;
    }
}


@media only screen and (max-width: 600px) {
    .nav-slice {left:85%;}

    .quote-social-links {
        display: none;
    }

    .numbers-content {
        flex-direction: column;
        gap: 2rem;
    }

    .numbers-bg {
        width: 200%;
        height: 175%;
        top: 5px;
    }

    .about-us-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .about-us-content-image {
        width: 100%;
        height: 250px;
    }
    
}

@media (max-width: 480px) {
    .nav-slice {left:80%;}
    
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .quick-links-swiper-wrapper {
        padding: 0 45px;
    }
    
    .quick-links-nav-prev,
    .quick-links-nav-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .quick-link-card {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }
    
    .quick-link-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .form-submit {
        padding: 0.875rem 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .main-footer {
        padding: 2rem 0;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
} 

@media only screen and (max-width: 362px) {
    .mobile-nav ul {
        padding-right: 2.5rem;
    }

    .about-us-cta-button-arrow {
        display: none;
    }

    .announcement-content-item a {
        font-size: 0.75rem;
    }
}

/* Blog Styles */
.blog-hero {
    background-size: cover;
    background-position: center;
    background-color: #2c3e50;
    color: white;
    padding: 4rem 0;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}

.blog-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.blog-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    max-width: 900px;
    width: 100%;
    line-height: 1.2;
}

/* Blog Content Wrapper */
.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    padding: 3rem 0;
    align-items: start;
}

.blog-main {
    min-width: 0;
}

/* Blog Posts Section (Component) */
.blog-posts-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.blog-posts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-posts-header .subheader {
    color: #3754FA;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    font-family: 'Nunito Sans', sans-serif;
}

.blog-posts-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Blog Posts Swiper */
.blog-posts-swiper-wrapper {
    position: relative;
    padding: 0 60px;
    margin-bottom: 2rem;
}

.blog-posts-swiper {
    overflow: visible;
}

.blog-posts-swiper .swiper-slide {
    height: auto;
}

.blog-posts-swiper .swiper-wrapper {
    padding: 20px 0;
    will-change: auto;
}

/* Navigation arrows */
.blog-posts-nav-prev,
.blog-posts-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e0e0e0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: #2c3e50;
}

.blog-posts-nav-prev:hover,
.blog-posts-nav-next:hover {
    background: #3754FA;
    border-color: #3754FA;
    color: white;
    box-shadow: 0 6px 20px rgba(55, 84, 250, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.blog-posts-nav-prev {
    left: 5px;
}

.blog-posts-nav-next {
    right: 5px;
}

.blog-posts-nav-prev.swiper-button-disabled,
.blog-posts-nav-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.blog-posts-nav-prev.swiper-button-disabled:hover,
.blog-posts-nav-next.swiper-button-disabled:hover {
    background: white;
    border-color: #e0e0e0;
    color: #2c3e50;
    transform: translateY(-50%) scale(1);
}

.blog-posts-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Blog Post Card */
.blog-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #ecf0f1;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.blog-post-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.blog-post-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f8f9fa;
    position: relative;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    z-index: 2;
    margin-bottom: 1rem;
}

.blog-category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    transition: opacity 0.3s ease;
}

.blog-category-badge:hover {
    opacity: 0.8;
}

.blog-post-content h2,
.blog-post-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.blog-post-content h2 a,
.blog-post-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-content h2 a:hover,
.blog-post-content h3 a:hover {
    color: #3754FA;
}

.blog-post-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin: 0 0 1rem 0;
}

.blog-post-excerpt {
    font-family: 'Nunito Sans', sans-serif;
    color: #666;
    line-height: 1.7;
    font-size: 0.85rem;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.blog-post-meta {
    display: flex;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    color: #999;
}

.blog-post-date,
.blog-post-reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-date i,
.blog-post-reading-time i {
    font-size: 0.75rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3754FA;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

/* Blog Listing Section */
.blog-listing-section {
    padding: 3rem 0 5rem;
}

.blog-listing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-listing-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.blog-listing-description {
    font-family: 'Nunito Sans', sans-serif;
    color: #666;
    font-size: 1.1rem;
}

.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
    font-family: 'Nunito Sans', sans-serif;
}

/* Blog Detail Page */
.blog-post-detail {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #ecf0f1;
}

.blog-post-header {
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ecf0f1;
}

.blog-post-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin: 1rem 0;
    line-height: 1.2;
}

.blog-post-subtitle-large {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.25rem;
    color: #666;
    font-style: italic;
    margin: 0 0 1.5rem 0;
}

.blog-post-meta-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.blog-post-author,
.blog-post-date-detail,
.blog-post-reading-time-detail,
.blog-post-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-body {
    font-family: 'Nunito Sans', sans-serif;
    color: #2c3e50;
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-post-body h2,
.blog-post-body h3,
.blog-post-body h4 {
    font-family: 'Oswald', sans-serif;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.blog-post-body a {
    color: #3754FA;
    text-decoration: none;
}

.blog-post-body a:hover {
    text-decoration: underline;
}

.blog-post-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
}

.blog-post-tags h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #ecf0f1;
}

.sidebar-widget-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #3754FA;
}

/* Recent Posts List */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
    min-width: 0;
}

.recent-post-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.recent-post-content h4 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: #3754FA;
}

.recent-post-date {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.8rem;
    color: #999;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.tag-link:hover {
    background-color: #3754FA;
    color: white;
    border-color: #3754FA;
}

.tag-count {
    color: #999;
    font-size: 0.8rem;
}

.tag-link:hover .tag-count {
    color: rgba(255, 255, 255, 0.8);
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 0.75rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    padding-left: 1.5rem;
    border-left: 3px solid #3754FA;
    background-color: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Nunito Sans', sans-serif;
    transition: all 0.3s ease;
}

.category-link:hover {
    background-color: #3754FA;
    color: white;
    transform: translateX(5px);
}

.category-count {
    color: #999;
    font-size: 0.85rem;
}

.category-link:hover .category-count {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Blog Styles */
@media (max-width: 968px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 3rem 0;
        min-height: 250px;
    }

    .blog-hero h1 {
        font-size: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .blog-post-detail {
        padding: 1.5rem;
    }

    .blog-post-header h1 {
        font-size: 2rem;
    }

    .blog-posts-swiper-wrapper {
        padding: 0 50px;
    }

    .blog-posts-nav-prev,
    .blog-posts-nav-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .blog-posts-header h2 {
        font-size: 2rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-posts-swiper-wrapper {
        padding: 0 45px;
    }

    .blog-posts-nav-prev,
    .blog-posts-nav-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}
