/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    /* Colors */
    --primary: hsl(173, 58%, 39%);
    --primary-dark: hsl(173, 58%, 30%);
    --primary-light: hsl(173, 40%, 96%);
    --accent: hsl(24, 95%, 53%);
    --accent-dark: hsl(24, 95%, 48%);
    
    --white: #ffffff;
    --black: hsl(220, 20%, 18%);
    --bg-light: hsl(210, 20%, 98%);
    --bg-secondary: hsl(173, 40%, 96%);
    
    --text-primary: hsl(220, 20%, 18%);
    --text-secondary: hsl(220, 10%, 45%);
    --text-muted: hsl(220, 10%, 60%);
    
    --border-color: hsl(210, 15%, 88%);
    
    /* Fonts */
    --font-sans: "DM Sans", system-ui, sans-serif;
    --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
    
    /* Spacing */
    --container-width: 1280px;
    --container-padding: 1.5rem;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -4px rgba(35, 42, 56, 0.08);
    --shadow-card: 0 8px 30px -8px rgba(35, 42, 56, 0.1);
    --shadow-cta: 0 8px 24px -4px hsla(24, 95%, 53%, 0.35);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hidden {
    display: none !important;
}

/* ============================================
   Icons
   ============================================ */
.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-md {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-lg {
    width: 2.5rem;
    height: 2.5rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-cta);
}

.btn-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, hsl(173, 45%, 50%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.nav-desktop {
    display: none;
    align-items: center;
}

.nav-desktop ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.dropdown-menu {
    gap: 1px !important;
}

.nav-desktop li {
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Dropdown Menu */
.nav-desktop .nav-dropdown {
    position: relative;
}

.nav-desktop .nav-dropdown > .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.nav-desktop .nav-dropdown .dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-desktop .nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-desktop .dropdown-menu {
position: absolute;
    top: 116%;
    left: 107%;
    transform: translateX(-50%);
    margin-top: 1rem;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 0.375rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    display: flex;
    flex-direction: column;
}
.nav-desktop .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.nav-desktop .dropdown-menu li {
    width: 100%;
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-size: 0.9375rem;
    width: 100%;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
    transform: translateX(4px);
}

.dropdown-item .icon-sm {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.header-actions {
    display: none;
    gap: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.phone-link .icon-sm {
    color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-btn .icon-xs {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.lang-switcher:hover .lang-btn .icon-xs {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 140px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    overflow: hidden;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: var(--bg-secondary);
    color: var(--primary);
}

.lang-option.active {
    background: var(--primary);
    color: var(--white);
}

.lang-code {
    font-weight: 700;
    font-size: 0.75rem;
    min-width: 24px;
}

.lang-name {
    font-size: 0.875rem;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.mobile-lang-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.menu-btn {
    padding: 0.5rem;
    color: var(--text-primary);
}

/* Mobile Menu */
.mobile-menu {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.mobile-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    text-decoration: none;
}

.mobile-link.phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.mobile-dropdown-toggle .dropdown-icon {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
    color: var(--primary);
    padding-left: 1rem;
}

.mobile-dropdown-item .icon-sm {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.heroSwiper {
    width: 100%;
    height: 100vh;
    padding-bottom: 60px;
}

.heroSwiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(35, 42, 56, 0.9) 0%,
        rgba(35, 42, 56, 0.7) 50%,
        rgba(35, 42, 56, 0.4) 100%
    );
    z-index: 1;
}

/* Hero Video Styles */
.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;

    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(5, 1fr);
}


.hero-text {
    max-width: 42rem;

grid-column: 1 / 5;
    grid-row: 4 / 5;   

    align-self: start; /* تحكم عمودي */
    justify-self: start; /* تحكم أفقي */
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .hero-text {
        grid-column: 1;
        grid-row: 1;
        padding: 1.5rem;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

.badge .icon-sm {
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatar-group {
    display: flex;
    margin-left: -0.75rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    margin-left: -0.75rem;
}

.stats-title {
    color: var(--white);
    font-weight: 600;
}

.stats-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}



.hero-pagination {
    position: absolute;
    bottom: 20px !important;
    left: 0;
    right: 0;
    z-index: 20;
}

.heroSwiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.75);
    opacity: 1;
    transition: all 0.4s ease;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.heroSwiper .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 42px;
    border-radius: 7px;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.4);
}

/* Responsive pagination for mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        height: auto;
    }
    
    .hero-video {
        min-height: 100vh;
        height: 100%;
    }
    
    .hero-pagination {
        bottom: 15px !important;
    }
    
    .heroSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .heroSwiper .swiper-pagination-bullet-active {
        width: 32px;
    }
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 5rem 0;
}

.section-secondary {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.25rem;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5a 100%);
    border-radius: 2px;
}


.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5a 100%);
    border-radius: 2px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ============================================
   About Section
   ============================================ */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    background: rgba(40, 150, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon .icon-lg {
    color: var(--primary);
}

.badge-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    line-height: 1;
}

.badge-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-feature:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    border-radius: var(--radius-lg);
    background: rgba(40, 150, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .icon-md {
    color: var(--primary);
}

.feature-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================
   Services Section
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 150, 136, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px -12px rgba(35, 42, 56, 0.2);
    cursor: pointer;
}

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

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.service-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    background: var(--primary-dark);
    transform: translateX(4px);
    box-shadow: 0 4px 12px -2px rgba(40, 150, 136, 0.4);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(4px);
}

.service-btn .icon-sm {
    width: 1rem;
    height: 1rem;
    stroke-width: 2.5;
}

/* Services Section Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   Services Page Section
   ============================================ */
.services-page-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-page-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-page-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.service-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 150, 136, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-page-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px -12px rgba(35, 42, 56, 0.25);
    cursor: pointer;
}

.service-page-card:hover::before {
    opacity: 1;
}

.service-page-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.service-page-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-page-card:hover .service-page-image {
    transform: scale(1.15);
}

.service-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-page-card:hover .service-page-overlay {
    opacity: 1;
}

.service-page-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.service-page-card:hover .service-page-icon {
    transform: translate(-50%, -50%) scale(1);
}

.service-page-icon .icon-lg {
    color: var(--primary);
    width: 1.5rem;
    height: 1.5rem;
}

.service-page-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
}

.service-page-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.625rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.service-page-card:hover .service-page-title {
    color: var(--primary);
}

.service-page-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    flex: 1;
}

.service-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.service-page-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.service-page-btn:hover::before {
    left: 100%;
}

.service-page-btn:hover {
    background: var(--primary-dark);
    transform: translateX(6px);
    box-shadow: 0 6px 20px -4px rgba(40, 150, 136, 0.5);
}

.service-page-btn i {
    transition: transform 0.3s ease;
}

.service-page-btn:hover i {
    transform: translateX(6px);
}

.service-page-btn .icon-sm {
    width: 1rem;
    height: 1rem;
    stroke-width: 2.5;
}

.no-services-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-services-message .icon-xl {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.no-services-message p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Services Page Responsive */
@media (max-width: 1024px) {
    .services-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-page-section {
        padding: 3rem 0;
    }
    
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-page-image-wrapper {
        height: 240px;
    }
    
    .service-page-content {
        padding: 2rem;
    }
    
    .service-page-title {
        font-size: 1.5rem;
    }
    
    .service-page-description {
        font-size: 1rem;
    }
}

/* ============================================
   Steps Section
   ============================================ */
.steps-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.step-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-soft);
}

.step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary) 0%, hsl(173, 45%, 50%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    margin: 1rem 0 1.5rem;
}

.step-icon .icon-lg {
    color: var(--white);
}

.step-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-arrow {
    display: none;
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(40, 150, 136, 0.1);
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.step-arrow .icon-sm {
    color: var(--primary);
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    background: rgba(40, 150, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: rgba(40, 150, 136, 0.2);
}

.benefit-icon .icon-md {
    color: var(--primary);
}

.benefit-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: var(--text-secondary);
}

/* ============================================
   Testimonials Section
   ============================================ */
.swiper {
    padding: 4px 0 24px 0;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.swiper-slide > div {
    width: 100%;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
    margin: 0 0.5rem;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(40, 150, 136, 0.1);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-filled {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--accent);
    color: var(--accent);
}

.testimonial-text {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, hsl(173, 45%, 50%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.slider-controls {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-pagination {
    min-width: 78px;
    text-align: center;
    letter-spacing: 0.08em;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ============================================
   Stats Section
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ============================================
   Booking Section
   ============================================ */
.booking-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, hsl(173, 45%, 50%) 100%);
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.booking-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.booking-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: var(--white);
    border-radius: 50%;
    transform: translate(50%, 50%);
}

.booking-container {
    position: relative;
    z-index: 10;
}

.booking-wrapper {
    max-width: 64rem;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.booking-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 2px;
}

.booking-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.booking-form-wrapper {
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-label .icon-sm {
    color: var(--primary);
}

.form-input {
    height: 2.5rem;
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--white);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(40, 150, 136, 0.1);
}

.form-hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.size-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.move-size-btn {
    height: 3rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s;
}

.move-size-btn:hover {
    border-color: rgba(40, 150, 136, 0.5);
}

.move-size-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.form-benefits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-benefit .icon-sm {
    color: var(--primary);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-primary);
    color: var(--white);
}

.footer-cta {
    background: var(--primary);
    padding: 3rem 0;
}

.footer-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-cta-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-cta-text {
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0;
    max-width: 28rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.contact-item:hover {
    color: var(--white);
}

.contact-item .icon-sm {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-bottom-link:hover {
    color: var(--white);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 640px) {
    .hero-pagination {
        bottom: 10px !important;
    }
    
    .about-img {
        height: 300px;
    }
    
    .about-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem;
    }
    
    .about-stats {
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .about-right .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .header-actions {
        display: flex;
    }
    
    .menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .step-arrow {
        display: flex;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .booking-title {
        font-size: 3rem;
    }
    
    .booking-form-wrapper {
        padding: 3rem;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

/* ============================================
   صفحة التواصل - Contact Page
   ============================================ */

/* Contact Page Section */
.contact-page-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: calc(100vh - 100px);
}

/* Page Header */
.contact-page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.contact-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-main-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Sidebar */
.contact-sidebar {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

.contact-info-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.contact-info-detail {
    font-size: 14px;
    color: #333;
    margin: 0 0 4px 0;
    font-weight: 500;
}

.contact-info-content small {
    font-size: 12px;
    color: #888;
    display: block;
}

.contact-quick-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

.quick-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.quick-feature-item i {
    width: 18px;
    height: 18px;
    color: #FF6B35;
}

/* Contact Form Area */
.contact-form-area {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 35px;
}

.contact-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.contact-form-header p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Modern Contact Form */
.modern-contact-form {
    width: 100%;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
}

.contact-form-field.full-width {
    grid-column: 1 / -1;
}

.contact-form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}



.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: #FF6B35;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.contact-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* Captcha Styling */
.captcha-field {
    margin-top: 10px;
}

.captcha-container {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.captcha-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.captcha-img,
.captcha_image {
    width: 150px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    display: block;
    cursor: pointer;
}

.captcha-reload {
    position: absolute;
    top: 76%;
    right: 0;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 6px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.captcha-reload:hover {
    background: #FF6B35;
}

.captcha-reload:hover i {
    color: #ffffff;
}

.captcha-reload i {
    width: 16px;
    height: 16px;
    color: #FF6B35;
    transition: all 0.3s ease;
}

.captcha-container input {
    flex: 1;
}

.field-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}

.field-hint i {
    width: 14px;
    height: 14px;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5a 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.contact-submit-btn i {
    width: 20px;
    height: 20px;
}

/* Form Footer */
.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.footer-badge i {
    width: 16px;
    height: 16px;
    color: #4CAF50;
}

/* Contact Page Responsive Design */
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-sidebar {
        position: relative;
        top: 0;
    }

    .contact-quick-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 80px 0 40px;
    }

    .contact-main-title {
        font-size: 32px;
    }

    .contact-main-subtitle {
        font-size: 16px;
    }

    .contact-page-header {
        margin-bottom: 40px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-area {
        padding: 25px;
    }

    .contact-sidebar {
        padding: 20px;
    }

    .captcha-container {
        flex-direction: column;
    }

    .captcha-image-wrapper {
        width: 100%;
    }

    .captcha-img,
    .captcha_image {
        width: 100%;
    }

    .contact-form-footer {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   Kurumsal Page Styles
   ============================================ */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 6rem 0 4rem;
    margin-top: 5rem;
}

.page-hero-content {
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Layout */
.content-layout {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .content-layout {
        grid-template-columns: 280px 1fr;
    }
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 6rem;
    align-self: start;
}

.sidebar-menu {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-weight: 500;
}

.sidebar-link:hover {
    background: var(--bg-light);
    color: var(--primary);
    transform: translateX(4px);
}

.sidebar-link.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.sidebar-link .icon-sm {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Main Content */
.content-main {
    min-width: 0;
}

.content-main.content-full {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto;
}

.content-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.page-image {
    width: 100%;
    height: auto;
    display: block;
}

.content-body {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    line-height: 1.8;
    color: var(--text-primary);
}

.content-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.content-body p {
    margin-bottom: 1rem;
}

.content-body ul,
.content-body ol {
    margin: 1rem 0 1rem 2rem;
}

.content-body li {
    margin-bottom: 0.5rem;
}

.content-body a {
    color: var(--primary);
    text-decoration: underline;
}

.content-body a:hover {
    color: var(--primary-dark);
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

/* Subpages Grid */
.subpages-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .subpages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .subpages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.subpage-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.subpage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px -12px rgba(35, 42, 56, 0.15);
}

.subpage-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.subpage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.subpage-card:hover .subpage-image img {
    transform: scale(1.1);
}

.subpage-content {
    padding: 1.5rem;
}

.subpage-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.subpage-excerpt {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subpage-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.subpage-link:hover {
    gap: 0.75rem;
}

.subpage-link .icon-sm {
    width: 18px;
    height: 18px;
}

/* Mobile Responsive */
@media (max-width: 1023px) {
    .page-hero {
        padding: 5rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-sidebar {
        position: static;
        order: 2;
    }
    
    .content-main {
        order: 1;
    }
    
    .content-body {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 4rem 0 2.5rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-body {
        padding: 1.25rem;
    }
}


/* ============================================
   Inner Pages Styling
   ============================================ */

/* Inner Page Section */
.inner-page-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--white) 100%);
    min-height: 60vh;
}

/* ============================================
   Service Detail Section
   ============================================ */
.service-detail-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.service-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-image {
    margin-bottom: 3rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-featured-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    object-fit: cover;
}

.service-detail-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.service-summary {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.summary-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-summary p {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.wysiwyg-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.wysiwyg-content h2 {
    font-size: 2rem;
}

.wysiwyg-content h3 {
    font-size: 1.5rem;
}

.wysiwyg-content h4 {
    font-size: 1.25rem;
}

.wysiwyg-content p {
    margin-bottom: 1.5rem;
}

.wysiwyg-content ul,
.wysiwyg-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.wysiwyg-content li {
    margin-bottom: 0.5rem;
}

.wysiwyg-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.service-footer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.btn-back,
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-back {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.btn-back:hover {
    background: var(--border-color);
    transform: translateX(-4px);
}

.btn-contact {
    background: var(--primary);
    color: var(--white);
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateX(4px);
    box-shadow: 0 4px 12px -2px rgba(40, 150, 136, 0.4);
}

.btn-back .icon-sm,
.btn-contact .icon-sm {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.btn-back:hover .icon-sm {
    transform: translateX(-4px);
}

.btn-contact:hover .icon-sm {
    transform: translateX(4px);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb-link:hover {
    color: var(--white);
}

.breadcrumb-separator {
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 600;
}

/* Service Detail Responsive */
@media (max-width: 768px) {
    .service-detail-section {
        padding: 3rem 0;
    }
    
    .service-detail-content {
        padding: 2rem;
    }
    
    .service-summary {
        padding: 1.25rem;
    }
    
    .service-footer-actions {
        flex-direction: column;
    }
    
    .btn-back,
    .btn-contact {
        width: 100%;
        justify-content: center;
    }
    
    .wysiwyg-content h2 {
        font-size: 1.75rem;
    }
    
    .wysiwyg-content h3 {
        font-size: 1.375rem;
    }
}

.inner-page-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Featured Image */
.inner-page-image {
    margin-bottom: 2.5rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    animation: fade-up 0.6s ease;
}

.page-featured-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.inner-page-image:hover .page-featured-img {
    transform: scale(1.02);
}

/* Page Content Card */
.inner-page-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    animation: fade-up 0.6s ease 0.2s backwards;
}

/* Page Summary */
.page-summary {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(40, 150, 136, 0.05) 100%);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.summary-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.page-summary p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-weight: 500;
}

/* Page Footer Actions */
.page-footer-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 2px solid var(--bg-light);
}

.btn-back,
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-back {
    background: var(--bg-light);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-back:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(-4px);
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(40, 150, 136, 0.25);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 150, 136, 0.35);
}

/* ============================================
   Page Content Styling (Hakkimizda, etc.)
   ============================================ */

/* WYSIWYG Content Styling */
.wysiwyg-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4,
.wysiwyg-content h5,
.wysiwyg-content h6 {
    font-family: var(--font-display);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.wysiwyg-content h1 {
    font-size: 2.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wysiwyg-content h2 {
    font-size: 1.875rem;
    color: var(--primary);
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-light);
    position: relative;
}

.wysiwyg-content h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.wysiwyg-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wysiwyg-content h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.wysiwyg-content h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.wysiwyg-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.wysiwyg-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wysiwyg-content ul,
.wysiwyg-content ol {
    margin-bottom: 2rem;
    padding-left: 0;
    list-style: none;
}

.wysiwyg-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.wysiwyg-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
}

.wysiwyg-content ol {
    counter-reset: item;
}

.wysiwyg-content ol li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    counter-increment: item;
}

.wysiwyg-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.wysiwyg-content blockquote {
    position: relative;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(40, 150, 136, 0.03) 100%);
    border-left: 4px solid var(--primary);
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.125rem;
}

.wysiwyg-content blockquote::before {
    content: '"';
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.wysiwyg-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wysiwyg-content table th,
.wysiwyg-content table td {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.wysiwyg-content table th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.wysiwyg-content table tbody tr {
    transition: background 0.2s ease;
}

.wysiwyg-content table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.wysiwyg-content table tbody tr:hover {
    background: var(--primary-light);
}

.wysiwyg-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.wysiwyg-content img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.wysiwyg-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.wysiwyg-content a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--accent);
}

.wysiwyg-content strong {
    font-weight: 700;
    color: var(--text-primary);
}

.wysiwyg-content em {
    font-style: italic;
    color: var(--text-secondary);
}

.wysiwyg-content code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.wysiwyg-content pre {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.page-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Responsive Design for Inner Pages */
@media (max-width: 1024px) {
    .inner-page-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .inner-page-section {
        padding: 2rem 0;
    }

    .inner-page-content {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

    .page-summary {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .page-summary p {
        font-size: 1rem;
    }

    .wysiwyg-content {
        font-size: 1rem;
    }

    .wysiwyg-content h1 {
        font-size: 1.75rem;
    }

    .wysiwyg-content h2 {
        font-size: 1.5rem;
    }

    .wysiwyg-content h3 {
        font-size: 1.25rem;
    }

    .wysiwyg-content h4 {
        font-size: 1.125rem;
    }

    .wysiwyg-content ul li,
    .wysiwyg-content ol li {
        padding-left: 1.75rem;
        font-size: 0.9375rem;
    }

    .wysiwyg-content blockquote {
        padding: 1.25rem 1.25rem 1.25rem 2.5rem;
        font-size: 1rem;
    }

    .wysiwyg-content table {
        font-size: 0.875rem;
    }

    .wysiwyg-content table th,
    .wysiwyg-content table td {
        padding: 0.75rem;
    }

    .page-footer-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-back,
    .btn-contact {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .page-featured-img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .inner-page-content {
        padding: 1.25rem;
    }

    .wysiwyg-content h1 {
        font-size: 1.5rem;
    }

    .wysiwyg-content h2 {
        font-size: 1.375rem;
    }

    .wysiwyg-content h3 {
        font-size: 1.125rem;
    }
    
}
