/*
Theme Name: Telekomp WC Theme
Theme URI: https://telekomp.pl
Description: Motyw WooCommerce dla serwisu Telekomp, rozwinięcie poprzedniego motywu o pełną integrację sklepu i usług.
Author: Admin
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: telekomp-wc
*/

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

:root {
    --primary-color: #f16421;
    --primary-dark: #d4541c;
    --primary-light: #ff8a4c;
    --secondary-color: #000000;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b7280;
    --background-light: #f8fafc;
    --background-lighter: #fafbfc;
    --white: #FFFFFF;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 6px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #fafbfc;
    overflow-x: hidden;
    font-size: 16px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtelne statyczne tło - usunięte z body, dodane do konkretnych sekcji */

main, header, footer, section {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(241, 100, 33, 0.08);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 200px;
    grid-column: 1;
}

.logo img,
.logo-img {
    max-height: 60px !important;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}

.navigation {
    grid-column: 2;
    justify-self: center;
}

.header-actions {
    grid-column: 3;
    justify-self: end;
}

/* Desktop logo size */
@media (min-width: 769px) {
    .logo img,
    .logo-img {
        max-height: 65px !important;
        min-height: 50px;
    }
}

/* Mobile logo responsive sizing */
@media (max-width: 768px) {
    .logo {
        justify-content: center;
        font-size: 1rem;
        max-width: 150px;
    }
    
    .logo img,
    .logo-img {
        max-height: 40px !important;
        width: auto;
        height: auto;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 0.9rem;
        max-width: 130px;
    }
    
    .logo img,
    .logo-img {
        max-height: 30px;
    }
}

/* Logo emoji removed for cleaner look */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 18px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-color);
    background-color: rgba(241, 100, 33, 0.05);
}

.nav-menu a:hover::before {
    width: 80%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(241, 100, 33, 0.25);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    opacity: 0;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 100, 33, 0.35);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f16421 0%, #ff8a4c 50%, #f16421 100%);
    color: var(--white);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.15)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="10" cy="80" r="1.8" fill="rgba(255,255,255,0.13)"/><circle cx="90" cy="40" r="1.2" fill="rgba(255,255,255,0.11)"/></svg>');
    background-size: 300px 300px;
    opacity: 0.6;
    animation: heroPattern 30s linear infinite;
}

@keyframes heroPattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 300px 300px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out;
}

.hero .subtitle {
    font-size: 1.35rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #2d2d2d);
    color: var(--white);
    padding: 16px 36px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2d2d2d, var(--secondary-color));
    color: var(--white);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 16px 36px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out 0.6s both;
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 0;
}

.btn-secondary:hover {
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover::before {
    transform: translateX(0);
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

/* Services Section */
.services {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--white) 100%);
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(241, 100, 33, 0.05), transparent);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 20px;
}

.section-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(241, 100, 33, 0.1), transparent);
    border-radius: 50%;
    z-index: -1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Wyśrodkowanie ostatniego niepełnego rzędu */
.services-grid::after {
    content: "";
    grid-column: 1 / -1;
}

/* Device cards grid */
.device-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    justify-items: center;
}

/* Centered variant for device categories */
.device-cards.device-cards--centered {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
    gap: 24px;
    justify-content: center;
    justify-items: stretch;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(241, 100, 33, 0.08);
    cursor: pointer;
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 350px;
}

.service-card * {
    pointer-events: none;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 100, 33, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
}

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

.service-card:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(241, 100, 33, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-price,
.service-duration {
    font-size: 0.95rem;
}

.service-card--placeholder {
    border: 2px dashed var(--background-light);
    text-align: left;
}

.service-link {
    display: none;
}

/* Device Category Grid Section */
.device-category-grid {
    padding: 90px 0 120px;
    background: var(--white);
    position: relative;
}

.device-category-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/themes/telekomp-theme/images/background-dots.svg');
    background-size: 250px 250px;
    background-repeat: repeat;
    background-position: center;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.device-category-grid > .container {
    position: relative;
    z-index: 1;
}

/* Device Brand Grid Section */
.device-brand-grid {
    padding: 90px 0 120px;
    background: var(--white);
}

/* Device Model Grid Section */
.device-model-grid {
    padding: 90px 0 120px;
    background: var(--white);
}

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

.device-card__image {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 8px;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 8px;
}

.device-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.device-card__image span {
    font-size: 1.5rem;
}

.device-card__image.is-placeholder {
    background: rgba(241, 100, 33, 0.08);
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 90px 0;
    background: var(--white);
    position: relative;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/themes/telekomp-theme/images/background-dots.svg');
    background-size: 250px 250px;
    background-repeat: repeat;
    background-position: center;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.features::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--background-lighter));
    pointer-events: none;
    z-index: 1;
}

.features > .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(241, 100, 33, 0.3);
    position: relative;
    transition: var(--transition);
}

.feature-icon::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(241, 100, 33, 0.4);
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
}

/* Team Section */
.team {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background-lighter) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
}

.team-member::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(241, 100, 33, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(241, 100, 33, 0.2);
}

.team-member:hover::before {
    opacity: 1;
}

.team-photo {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 90px 0;
    background: var(--white);
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/themes/telekomp-theme/images/background-dots.svg');
    background-size: 250px 250px;
    background-repeat: repeat;
    background-position: center;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at center top, rgba(241, 100, 33, 0.04), transparent);
    pointer-events: none;
    z-index: 0;
}

.contact > .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 18px 20px;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    transform: scaleY(0);
    transition: var(--transition);
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(241, 100, 33, 0.08), rgba(255, 138, 76, 0.05));
    border-color: rgba(241, 100, 33, 0.2);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
}

.contact-item:hover .icon {
    transform: scale(1.15) rotate(5deg);
    -webkit-text-fill-color: var(--primary-color);
}

.contact-item:hover a,
.contact-item:hover div {
    color: var(--text-dark) !important;
}

.contact-item .icon {
    font-size: 1.8rem;
    margin-right: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-item:hover .icon {
    -webkit-text-fill-color: var(--primary-color);
}

.contact-social {
    margin-top: 30px;
}

.contact-social .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-social .social-link {
    background: var(--background-light);
    padding: 10px 18px;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-social .social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 100, 33, 0.3);
}

.contact-form {
    background: transparent;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(241, 100, 33, 0.12);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Service Area */
.service-area {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.service-area__intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
}

.service-area__lead {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.service-area__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.service-area__card {
    background: #fff;
    border: 1px solid rgba(9, 29, 66, 0.08);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 14px 35px rgba(17, 29, 66, 0.08);
}

.service-area__address {
    font-style: normal;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-area__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-area__steps {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-area__steps li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.service-area__steps .step-index {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(241, 100, 33, 0.1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.service-area__note {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-area__city-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(8, 25, 48, 0.08);
    box-shadow: 0 14px 40px rgba(12, 23, 57, 0.08);
}

.service-area__city-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.service-area__city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.service-area__city {
    border: 1px solid rgba(9, 29, 66, 0.08);
    border-radius: 16px;
    padding: 16px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text-dark);
    transition: var(--transition);
}

.service-area__city:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 24px rgba(14, 28, 66, 0.12);
}

.service-area__city .city-link-label {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.service-area__full-list {
    margin-top: 40px;
}

.service-area__full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.service-area__full-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-area__full-grid a {
    color: var(--text-dark);
    text-decoration: none;
}

.service-area__full-grid a:hover {
    color: var(--primary-color);
}

.service-area-hero {
    padding: 70px 0 20px;
    background: linear-gradient(120deg, rgba(241, 100, 33, 0.06) 0%, rgba(11, 42, 80, 0.05) 100%);
}

.service-area-hero__lead {
    max-width: 720px;
    color: var(--text-muted);
}

.service-area-page__content {
    padding: 40px 0 80px;
}

.service-area-page__copy {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .service-area__city-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-area__card {
        padding: 24px;
    }

    .service-area-hero {
        text-align: center;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.3fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section {
    min-width: 0;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.footer-links-section {
    margin-top: 30px;
}

.footer-links-section h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-widgets-inline {
    margin-top: 30px;
}

.footer-widgets-inline h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-brand .footer-logo {
    margin-bottom: 16px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: inline-block;
}

.footer-brand .footer-logo img {
    max-width: 140px;
    height: auto;
    display: block;
}

.footer-brand p {
    color: #CCCCCC;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: var(--primary-color);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-cities__note {
    font-size: 0.9rem;
    color: #CCCCCC;
    margin-bottom: 12px;
}

.footer-cities__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-cities__list a {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-cities__list a:hover {
    background: var(--primary-color);
}

.footer-cities__more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    color: #CCCCCC;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.contact-item .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item a {
    color: #CCCCCC;
    text-decoration: none;
    transition: var(--transition);
}

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

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand,
    .footer-cities,
    .footer-contact {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-brand .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Mobile Header Layout */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
    
    .header-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 15px;
        padding: 0;
    }
    
    .logo {
        grid-column: 2;
        justify-content: center;
        font-size: 1.1rem;
        margin: 0 auto;
    }
    
    .navigation {
        display: none !important;
    }
    
    .header-actions {
        grid-column: 3;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-self: end;
    }
    
    .header-actions .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        grid-column: 1;
        order: -1;
        background: var(--primary-color);
        border: none;
        border-radius: var(--border-radius);
        padding: 10px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle span {
        background: var(--white);
    }
    
    .cta-text {
        display: none;
    }
    
    .cta-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .hero {
        margin-top: 70px;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .device-card__image {
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
    }
    
    .device-card__image img {
        object-fit: contain;
        padding: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo img,
    .logo-img {
        max-height: 32px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .cta-button {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 100px 0 50px;
        margin-top: 65px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 15px;
        line-height: 1.25;
    }
    
    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .services,
    .features,
    .team,
    .contact {
        padding: 50px 0;
    }
    
    .post-slide {
        flex: 0 0 280px;
    }
    
    .header-content {
        padding: 0 12px;
        gap: 8px;
    }
    
    .logo {
        font-size: 0.95rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 13px 24px;
        font-size: 1rem;
    }
    
    .service-card,
    .team-member,
    .post-card {
        border-radius: var(--border-radius);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header CTA Button Update */
.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 100, 33, 0.3);
}

.cta-icon {
    font-size: 1.1rem;
}

.cta-text {
    font-size: 0.95rem;
}

/* Blog Posts Slider */
.blog-posts {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--background-lighter) 0%, var(--background-light) 100%);
    overflow: hidden;
    position: relative;
    clear: both;
}

.blog-posts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: radial-gradient(ellipse at top, rgba(241, 100, 33, 0.05), transparent);
    pointer-events: none;
}

.blog-posts .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-posts .section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-posts .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.posts-slider-container {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
}

.posts-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    align-items: stretch;
}

.posts-slider:active {
    cursor: grabbing;
}

.posts-slider::-webkit-scrollbar {
    display: none;
}

.post-slide {
    flex: 0 0 350px;
    height: auto;
}

.post-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 2;
}

.post-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(241, 100, 33, 0.05), transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
}

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

.post-card:hover::after {
    opacity: 1;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(241, 100, 33, 0.15);
}

.post-thumbnail {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--background-light);
}

.post-thumbnail::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
    transition: var(--transition);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.08);
}

.post-card:hover .post-thumbnail::after {
    background: linear-gradient(180deg, transparent 0%, rgba(241, 100, 33, 0.1) 100%);
}

.post-thumbnail.placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 3rem;
    color: var(--white);
    opacity: 0.8;
}

.post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.post-date {
    color: var(--primary-color);
    font-weight: 600;
}

.post-author {
    color: var(--text-light);
}

.post-content h3 {
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: auto;
}

.read-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-btn {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(241, 100, 33, 0.3);
    position: relative;
    overflow: hidden;
}

.slider-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    opacity: 0;
    transition: var(--transition);
}

.slider-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(241, 100, 33, 0.4);
}

.slider-btn:hover::before {
    opacity: 1;
}

.slider-btn span {
    position: relative;
    z-index: 1;
}

.slider-btn:disabled {
    background: linear-gradient(135deg, var(--text-light), #9ca3af);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-btn:disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .post-slide {
        flex: 0 0 280px;
    }
    
    .posts-slider {
        gap: 20px;
        padding: 15px 0;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-thumbnail {
        height: 160px;
    }
    
    .slider-controls {
        margin-top: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Mobile Menu Styles */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: opacity 0.3s ease;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content {
    background: var(--white);
    height: 100%;
    width: 85%;
    max-width: 320px;
    padding: 20px;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--background-light);
}

.mobile-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-nav-close {
    background: var(--background-light);
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-nav-overlay .nav-menu,
.mobile-nav-content .nav-menu,
ul.mobile-nav-menu,
.mobile-nav-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 1;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 0 !important;
}

.mobile-nav-overlay .nav-menu > li,
.mobile-nav-content .nav-menu > li,
ul.mobile-nav-menu > li,
.mobile-nav-menu > li {
    margin-bottom: 8px !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    float: none !important;
    flex: none !important;
}

.mobile-nav-menu ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
}

.mobile-nav-menu .sub-menu {
    padding-left: 20px !important;
    margin-top: 8px !important;
    display: block !important;
    width: 100% !important;
}

.mobile-nav-menu .sub-menu li {
    margin-bottom: 5px !important;
    width: 100% !important;
    display: block !important;
    float: none !important;
}

.mobile-nav-menu .sub-menu a {
    font-size: 0.95rem;
    padding: 10px 16px;
}

.mobile-nav-menu a {
    display: block;
    padding: 14px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.mobile-nav-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 0 4px 4px 0;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.current-menu-item {
    background: var(--background-light);
    color: var(--primary-color);
    padding-left: 24px;
}

.mobile-nav-menu a:hover::before,
.mobile-nav-menu a.current-menu-item::before {
    width: 4px;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--background-light);
}

.mobile-cta-button {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(241, 100, 33, 0.3);
    font-size: 1.1rem;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 100, 33, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

@media (max-width: 480px) {
    .post-slide {
        flex: 0 0 250px;
    }
    
    .header-content {
        padding: 0 15px;
        gap: 15px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo img,
    .logo-img {
        max-height: 35px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .cta-text {
        display: none;
    }
    
    .cta-button {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .mobile-nav-content {
        width: 250px;
    }
    
    .hero {
        padding-top: 160px;
        padding-bottom: 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-top: 25px;
        line-height: 1.3;
    }
    
    .hero .subtitle {
        margin-top: 15px;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 100, 33, 0.3), transparent);
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="20" r="1" fill="rgba(241,100,33,0.06)"/><circle cx="75" cy="40" r="0.8" fill="rgba(241,100,33,0.05)"/><circle cx="45" cy="70" r="1.2" fill="rgba(241,100,33,0.07)"/><circle cx="85" cy="85" r="0.9" fill="rgba(241,100,33,0.04)"/></svg>');
    background-size: 500px 500px;
    opacity: 0.3;
    pointer-events: none;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-block;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(241, 100, 33, 0.4);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i,
.social-link span {
    position: relative;
    z-index: 1;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 0;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
    padding: 5px 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.footer-contact .contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer-contact .contact-item .icon {
    font-size: 1.2rem;
    margin-right: 15px;
    color: var(--primary-color);
    width: 25px;
    flex-shrink: 0;
}

.footer-contact .contact-item div {
    color: var(--white);
    line-height: 1.4;
    font-weight: 500;
}

.footer-contact .contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.footer-contact .contact-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(241, 100, 33, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: bounceIn 0.6s ease-out;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(241, 100, 33, 0.45);
}

.scroll-to-top:hover::before {
    opacity: 1;
    animation: spin 3s linear infinite;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
/* Error 404 Page Styles */
.error-404-section {
    min-height: calc(100vh - 80px - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
}

.error-404-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-404-icon {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 rgba(241, 100, 33, 0.1);
}

.error-404-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.error-404-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-404-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-404-actions .btn-primary,
.error-404-actions .btn-secondary {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.error-404-actions .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.error-404-actions .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.error-404-actions .btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.error-404-actions .btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-404-icon {
        font-size: 80px;
    }
    
    .error-404-title {
        font-size: 1.875rem;
    }
    
    .error-404-text {
        font-size: 1rem;
    }
    
    .error-404-actions {
        flex-direction: column;
    }
    
    .error-404-actions .btn-primary,
    .error-404-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
