ul#mainNav1 li,
ul#mainNav2 li,
ul#mainNav3 li
{
  display: none
}

#home {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: none !important;
  background-color: #fff; /* ensures clean white transition under red header */
}

#about {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  border-top: none !important;
  background-color: #fff; /* ensures clean white transition under red header */
}


#services {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: none !important;
  background-color: #fff; /* ensures clean white transition under red header */
}

/* styles.css */

/* Global Styles */
:root {
    --primary-red: #D32F2F; /* Changed to red for post office theme */
    --dark-red: #B71C1C;
    --light-red: #FFCDD2;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --background-light: #F5F5F5;
    --border-color: #E0E0E0;
    --accent-color: #007BFF; /* For buttons or highlights if needed */
    --header-bg: #333333; /* Kept for slight style variation: dark header */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: var(--primary-red);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-red);
}

.container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

.top-bar .container,
header .container {
    max-width: none; /* Removes the 1200px cap for full-width feel */
    padding: 0px 40px; /* Increased padding slightly for balance; adjust as needed */
	height:10px
}

/* Header Styles */
header {
    background-color: #D32F2F;
    color: var(--text-light);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
	justify-content: space-between;
	padding: 0 2em;
}

.logo-link {
    display: block;
}

.logo {
    height: 60px; /* Adjust based on your logo size */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    nav ul {
        gap: 12px;
    }
    
    nav ul li a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
        padding: 0 1em;
    }
    
    nav ul {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .logo {
        height: 50px;
    }
}

nav ul li a {
  color: white;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* Hero Section - Complete Redesign */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    border-top: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(<img src="https://124.sb.mywebsite-editor.com/webseitendaten/800/927/850/usertemplates/img/post-office-exterior.png" alt="" />);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.85) 0%, rgba(183, 28, 28, 0.9) 100%);
    z-index: 2;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 100px 0;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    width: 100%;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.05rem;
}

.hero-buttons .btn .btn-arrow {
    display: inline-block;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.hero-buttons .btn:hover .btn-arrow {
    transform: translateX(4px);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: white;
    color: #D32F2F;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Noticeboard Section */
.noticeboard-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
}

.noticeboard-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.noticeboard-header h2 {
    font-size: 3rem;
    color: #D32F2F;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.noticeboard-subtitle {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.noticeboard {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.noticeboard-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(139, 69, 19, 0.1) 2px,
            rgba(139, 69, 19, 0.1) 4px
        ),
        linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 100%);
    border-radius: 20px;
    box-shadow: 
        inset 0 0 0 8px rgba(139, 69, 19, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.15);
    border: 3px solid #8b4513;
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.notice {
    background: #fffef9;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    border-top: 4px solid #D32F2F;
}

.notice:nth-child(even) {
    transform: rotate(1deg);
}

.notice:nth-child(3n) {
    transform: rotate(-0.5deg);
}

.notice:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.notice-pin {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #c0c0c0 0%, #808080 100%);
    border-radius: 50%;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.notice-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #606060;
    border-radius: 50%;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.notice-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notice-badge-urgent {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef5350;
}

.notice-badge-update {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #42a5f5;
}

.notice-badge-info {
    background: #f3e5f5;
    color: #6a1b9a;
    border: 1px solid #ab47bc;
}

.notice-badge-reminder {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ff9800;
}

.notice-date {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
    white-space: nowrap;
}

.notice h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.notice p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.notice-important {
    border-top-color: #c62828;
}

.notice-update {
    border-top-color: #1565c0;
}

.notice-info {
    border-top-color: #6a1b9a;
}

.notice-reminder {
    border-top-color: #e65100;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Couriers Section */
.features {
	border-top: 2px solid #e0e0e0;
  padding: 100px 0;
  background-color: #ffffff;
  text-align: center;
}

@media (max-width: 768px) {
    .features {
        padding: 80px 0;
    }
    
    .features h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .feature-grid {
        padding: 0 20px;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 60px 0;
    }
    
    .features h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 24px 20px;
    }
}

.features h2 {
  font-size: 2.5rem;
  color: #D32F2F;
  margin-bottom: 60px;
  position: relative;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.features h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #D32F2F, #B71C1C);
  margin: 16px auto 0;
  border-radius: 2px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center; /* keeps all cards aligned at the top */
}

.feature-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.feature-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.05), transparent);
  transition: left 0.5s ease;
}

.feature-item:hover::after {
  left: 100%;
}

.feature-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(211, 47, 47, 0.15);
  border-color: rgba(211, 47, 47, 0.3);
}

.feature-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

/* Optional: give all feature cards same height */
.feature-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive - Hero Section */
@media (max-width: 1024px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 16px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Responsive - Noticeboard */
@media (max-width: 1024px) {
    .noticeboard-section {
        padding: 100px 0;
    }
    
    .notices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .noticeboard-section {
        padding: 80px 0;
    }
    
    .noticeboard-header h2 {
        font-size: 2.2rem;
    }

    .noticeboard-subtitle {
        font-size: 1rem;
    }

    .noticeboard {
        padding: 40px 20px;
    }

    .notices-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .notice {
        transform: rotate(0deg) !important;
        padding: 24px;
    }

    .notice:hover {
        transform: translateY(-4px) !important;
    }
    
    .notice h3 {
        font-size: 1.2rem;
    }
    
    .notice p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .noticeboard-section {
        padding: 60px 0;
    }
    
    .noticeboard-header h2 {
        font-size: 1.8rem;
    }
    
    .noticeboard {
        padding: 30px 16px;
    }
    
    .notice {
        padding: 20px;
    }
    
    .notice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Responsive - Stats Section */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
}




/* Section Styles */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark-red);
    font-weight: 700;
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-section.section-1 {
    border-top: 1px solid #e0e0e0;
}

.about-section.section-3 {
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.about-section.section-location {
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
    padding: 100px 0;
}

.about-section.section-location h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #D32F2F;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-details h3 {
    font-size: 1.8rem;
    color: #D32F2F;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.location-address {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

.location-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.location-link:hover {
    border-color: #D32F2F;
    background: rgba(211, 47, 47, 0.05);
    color: #D32F2F;
    transform: translateX(4px);
}

.link-icon {
    font-size: 1.2rem;
    display: inline-block;
}

.location-map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-map:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
    display: block;
}

#what3words-code {
    font-weight: 600;
    color: #D32F2F;
    font-family: 'Courier New', monospace;
}

/* Subtle enhancements to existing about sections */
.about-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.15);
}

.about-text h2 {
    transition: color 0.3s ease;
}

.about-text:hover h2 {
    color: #B71C1C;
}

/* Responsive: Location Section */
@media (max-width: 1024px) {
    .location-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-section.section-location {
        padding: 60px 0;
    }
    
    .about-section.section-location h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-map iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .about-section.section-location {
        padding: 50px 0;
    }
    
    .about-section.section-location h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .location-details h3 {
        font-size: 1.5rem;
    }
    
    .location-address {
        font-size: 1rem;
    }
    
    .location-link {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .location-map iframe {
        height: 300px;
    }
}

.about {
    background-color: #ffffff;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.05) 0%, rgba(183, 28, 28, 0.03) 100%);
  pointer-events: none;
}

/* Services Hero */
.services-hero {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.services-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #D32F2F;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #666;
  font-weight: 400;
  max-width: 600px;
   margin: 0 auto !important;
  text-align: center !important;
  display: block;
  width: 100%;
}

/* Subsection Header */
.subsection-header {
  text-align: center;
  margin-bottom: 40px;
}

.subsection-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #D32F2F;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.subsection-description {
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-section h1 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .subsection h2 {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
    
    .services-subsections {
        padding: 0 20px;
    }
    
    .service-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 24px 20px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section h1 {
        font-size: 1.8rem;
    }
    
    .subsection h2 {
        font-size: 1.6rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .postal .postal-filters {
        gap: 12px;
    }
    
    .postal .service-filters {
        gap: 10px 15px;
    }
    
    .postal .region-toggle button {
        min-width: 100px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

.services-section h1 {
  text-align: center;
  font-size: 2.8rem;
  color: var(--primary-red);
  margin-bottom: 60px;
}

.services-subsections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.subsection h2 {
  font-size: 2.2rem;
  color: var(--dark-red);
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Checkbox filters */
.service-filters {
  margin-bottom: 30px;
}

.service-filters label {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  cursor: pointer;
}

.service-filters input[type="checkbox"] {
  margin-right: 5px;
}

/* Service Cards Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Individual Service Cards */
.service-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  border: 1px solid #f0f0f0;
}

.service-icon-small {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon-small {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
  font-size: 1.4rem;
  color: #D32F2F;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #B71C1C;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .services-subsections {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-card {
    text-align: center;
  }
}

/* Testimonials Section */
.testimonials {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    background-color: #D32F2F;
    padding: 80px 0;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .testimonial-item {
        min-width: 280px;
        padding: 24px 20px;
        margin: 0 8px;
    }
    
    .testimonial-item::before {
        font-size: 3rem;
        top: 8px;
        left: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .testimonial-item {
        min-width: 260px;
        padding: 20px 16px;
    }
    
    .testimonial-item p {
        font-size: 0.95rem;
    }
    
    .testimonial-item h4 {
        font-size: 0.95rem;
    }
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonials-scroller {
    display: flex;
    animation: scroll 30s linear infinite;
}

.testimonial-item {
	display: flex;
	flex-direction: column;
	align-items: center;
    min-width: 340px;
    background: white;
    padding: 32px 28px;
    margin: 0 12px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    justify-content: center;
	text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(211, 47, 47, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #D32F2F;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.testimonial-item span {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 50px;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer Styles */
footer {
    background-color: #2c2c2c;
    color: var(--text-light);
    padding: 60px 0 0;
    flex-direction: column;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
    footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    
    .footer-section {
        min-width: auto;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        gap: 24px;
        padding: 0 16px;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.footer-section p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.footer-section a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 24px 0;
    text-align: center;
    background-color: #222;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: var(--text-light);
}


/* Responsive */
@media (max-width: 768px) {
    #chat-container {
        width: 90%;
        max-width: 320px;
        right: 5%;
        bottom: 10px; /* Adjust for mobile screens */
    }
    #chat-header {
        padding: 8px 12px;
    }
    #chat-window {
        padding: 12px;
    }
    #chat-input-container {
        padding: 8px;
    }
    #userInput {
        font-size: 1em;
        padding: 8px;
    }
    .option-btn, .btn {
        font-size: 1em;
        padding: 10px;
    }
    #chat-button {
        bottom: 20px;
        right: 20px;
    }
    #chat-bubble {
        right: 40px;
    }
}

/* General About Grid */
.about-grid {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}

/* Section 1: Image Left */
.section-1-grid {
  grid-template-areas: "image text";
  grid-template-columns: 1fr 1fr;
  text-align:center;
}

.section-1-grid .about-image {
  grid-area: image;
  justify-self: start; /* fixes image to far left */
}

.section-1-grid .about-text {
  grid-area: text;
}

/* Section 3: Image Right */
.section-3-grid {
  grid-template-areas: "text image";
  grid-template-columns: 1fr 1fr;
}

.section-3-grid .about-text {
  grid-area: text;
  text-align:center;
}

.section-3-grid .about-image {
  grid-area: image;
  justify-self: end; /* fixes image to far right */
}

/* Images styling */
.about-image img {
  width: 100%;
  height: auto;
  max-width: 500px; /* optional: limit width */
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(211, 47, 47, 0.15);
}

/* Text styling */
.about-text h2 {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
  font-weight: 400;
}

/* Responsive: About Section */
@media (max-width: 1024px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-grid {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .section-1-grid,
    .section-3-grid {
        grid-template-areas:
          "image"
          "text";
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .section-1-grid .about-image,
    .section-3-grid .about-image,
    .section-1-grid .about-text,
    .section-3-grid .about-text {
        justify-self: center;
    }

    .about-image img {
        max-width: 100%;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-grid {
        padding: 0 20px;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .about-grid {
        padding: 0 16px;
        gap: 24px;
    }
}
/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add subtle animations */
.quick-service-item,
.stat-item,
.feature-item {
    animation: fadeIn 0.6s ease-out;
}

.quick-service-item:nth-child(1) { animation-delay: 0.1s; }
.quick-service-item:nth-child(2) { animation-delay: 0.2s; }
.quick-service-item:nth-child(3) { animation-delay: 0.3s; }
.quick-service-item:nth-child(4) { animation-delay: 0.4s; }

.services-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.services-section h1 {
  text-align: center;
  font-size: 2.8rem;
  color: var(--primary-red);
  margin-bottom: 60px;
}

/* CONTAINER WIDTH LIMIT */
.services-subsections {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* GRID: LIMIT TO 3 CARDS PER ROW */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 max per row */
  gap: 25px;
  justify-content: center;  /* centers when fewer cards */
  width: 100%;
  max-width: 1000px;        /* optional: tighten layout a little */
  margin: 0 auto;           /* centers the grid */
  align-items: start;
}

/* INDIVIDUAL SERVICE CARD */
.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  min-height: 220px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D32F2F, #B71C1C);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Card Glow Effect */
.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover .card-glow {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(211, 47, 47, 0.2);
  border-color: rgba(211, 47, 47, 0.3);
}

/* Premium Cards */
.service-card.premium {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  border: 2px solid rgba(255, 193, 7, 0.3);
}

.service-card.premium::before {
  background: linear-gradient(90deg, #FFC107, #FF9800);
}

.service-card.premium:hover {
  box-shadow: 0 12px 40px rgba(255, 193, 7, 0.3);
  border-color: rgba(255, 193, 7, 0.5);
}

/* Card Icons */
.card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
}

/* Card Badges */
.card-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  color: #666;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px;
}

/* Card Features */
.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.feature-tag {
  display: inline-block;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(183, 28, 28, 0.1) 100%);
  color: #D32F2F;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(211, 47, 47, 0.2);
}

/* RESPONSIVE BEHAVIOUR */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}
/* Checkbox filters */
/* Segmented control */
.region-segment {
  display: inline-flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
  margin: 18px 0 30px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.region-btn {
  padding: 10px 18px;
  background: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  min-width: 120px;
  text-align: center;
  transition: background-color 0.15s, color 0.15s;
  flex: 1 1 auto;
}

.region-btn:not(:last-child) {
  border-right: 1px solid #eee;
}

.region-btn:hover {
  background: #fafafa;
}

/* Active state */
.region-btn.active {
  background: var(--primary-red);
  color: var(--text-light);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.03);
}

/* Small screens: full width */
@media (max-width: 480px) {
  .region-segment { width: 100%; }
  .region-btn { padding: 12px; font-size: 0.95rem; }
}                            
/* --- POSTAL FILTERS CONTAINER --- */
.postal-filters-wrapper {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
  border: 1px solid #e0e0e0;
}

.postal .postal-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  width: 100%;
}

/* --- CHECKBOX FILTERS --- */
.postal .service-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.filter-chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.1), transparent);
  transition: left 0.5s ease;
}

.filter-chip:hover::before {
  left: 100%;
}

.filter-chip:hover {
  border-color: #D32F2F;
  background: rgba(211, 47, 47, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.15);
}

.filter-chip input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #D32F2F;
  margin: 0;
}

.filter-chip input[type="checkbox"]:checked + .filter-label,
.filter-chip:has(input[type="checkbox"]:checked) {
  color: #D32F2F;
  font-weight: 600;
}

.filter-chip:has(input[type="checkbox"]:checked) {
  border-color: #D32F2F;
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(183, 28, 28, 0.05) 100%);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
}

.filter-label {
  display: inline-block;
}

/* --- REGION TOGGLE (SLIDER) --- */
.postal .region-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 4px;
  gap: 4px;
  margin-bottom: 40px;
}

.postal .region-toggle button {
  padding: 14px 28px;
  border: none;
  background: transparent;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-width: 140px;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.region-icon {
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
  line-height: 1;
}

.postal .region-toggle button:hover {
  background: rgba(211, 47, 47, 0.05);
  transform: scale(1.05);
}

.postal .region-toggle button:hover .region-icon {
  transform: scale(1.2) rotate(5deg);
}

.postal .region-toggle button.active {
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.4);
  transform: scale(1.05);
}

.postal .region-toggle button.active .region-icon {
  transform: scale(1.2);
}

/* --- RESPONSIVE BEHAVIOR --- */
@media (max-width: 600px) {
  .postal .service-filters {
    gap: 10px 15px;
  }

  .postal .region-toggle button {
    min-width: 100px;
    font-size: 0.9rem;
    padding: 8px 15px;
  }
}                            
.postal-restrictions-link {
  text-align: center;
  margin: 60px 0 40px;
}

.restrictions-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.restrictions-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.4);
  color: #ffffff;
}

.restrictions-btn .btn-arrow {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.restrictions-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Restrictions Section styling */
.restrictions-header {
  text-align: center;
  margin-bottom: 50px;
}

.restrictions-header h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #D32F2F;
  padding: 50px 0 20px;
  border-top: 2px solid #e0e0e0;
  margin-top: 80px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.restrictions-subtitle {
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
  margin: 0;
}

.subsection.restrictions .restrictions-list {
  list-style-type: none;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.restriction-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 16px;
  border: 2px solid #e0e0e0;
  border-left: 5px solid #D32F2F;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.restriction-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.05), transparent);
  transition: left 0.5s ease;
}

.restriction-item:hover::before {
  left: 100%;
}

.restriction-item:hover {
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.15);
  border-left-color: #B71C1C;
  border-color: rgba(211, 47, 47, 0.3);
}

.restriction-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.restriction-item:hover .restriction-icon {
  transform: scale(1.15) rotate(5deg);
}

.restriction-content {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.restriction-content strong {
  color: #D32F2F;
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
    .services-hero {
        margin-bottom: 60px;
    }
    
    .subsection-header {
        margin-bottom: 30px;
    }
    
    .postal-filters-wrapper {
        padding: 24px;
        margin-bottom: 40px;
    }
    
    .restrictions-header h2 {
        font-size: 2rem;
        padding: 40px 0 16px;
        margin-top: 40px;
    }
    
    .restriction-item {
        padding: 20px 24px;
        gap: 16px;
    }
    
    .restriction-icon {
        font-size: 2rem;
    }
    
    .restriction-content {
        font-size: 0.95rem;
    }
    
    .restriction-content strong {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        margin-bottom: 50px;
    }
    
    .postal-filters-wrapper {
        padding: 20px;
    }
    
    .filter-chip {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .postal .region-toggle button {
        min-width: 120px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .restrictions-header h2 {
        font-size: 1.8rem;
        padding: 30px 0 12px;
    }
    
    .restriction-item {
        flex-direction: column;
        text-align: center;
        padding: 18px 20px;
        gap: 12px;
    }
    
    .restriction-icon {
        font-size: 2rem;
    }
    
    .restriction-content {
        font-size: 0.9rem;
    }
    
    .restrictions-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}