/* ========================================
   ЗАГАЛЬНІ СТИЛІ
   ======================================== */

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

:root {
    --primary-color: #E89B3C;
    --primary-dark: #D88A2A;
    --primary-light: #F0AC5E;
    --secondary-color: #2C2C2C;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

/* ========================================
   HEADER
   ======================================== */

header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

.work-hours {
    font-size: 14px;
}

/* ========================================
   НАВІГАЦІЯ
   ======================================== */

nav {
    background: var(--white);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.logo-image {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-text span {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-text span:nth-child(1) {
    color: var(--primary-color);
}

.logo-text span:nth-child(2) {
    color: var(--primary-color);
}

.logo-text span:nth-child(3) {
    color: var(--primary-color);
}

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px 10px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

/* ========================================
   HERO СЕКЦІЯ
   ======================================== */

.hero {
    background-color: var(--secondary-color);
    background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                      url('img/hero-desktop.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Retina/4K дисплеї */
@media only screen and (min-width: 1920px) and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min-width: 1920px) and (min-resolution: 192dpi) {
    .hero {
        background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                          url('img/hero-desktop-2x.jpg');
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(232, 155, 60, 0.1) 100%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(232, 155, 60, 0.1) 100%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ========================================
   КНОПКИ
   ======================================== */

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--primary-dark);
}

/* ========================================
   СЕКЦІЇ
   ======================================== */

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

/* ========================================
   FEATURES / ПЕРЕВАГИ
   ======================================== */

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

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   SERVICES / ПОСЛУГИ
   ======================================== */

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

.service-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

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

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* ========================================
   ДЕТАЛЬНІ ПОСЛУГИ
   ======================================== */

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.service-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
}

.service-detail h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 32px;
}

.service-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.service-list ul {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 16px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: "→ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.service-list li strong {
    color: var(--primary-color);
}

/* ========================================
   ПРАЙС
   ======================================== */

.price-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-light);
    border-left: 4px solid var(--primary-color);
}

.price-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.price-category {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-category h3 {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    margin: 0;
    font-size: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
    transition: background 0.3s;
}

.price-item:hover {
    background: var(--bg-light);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    flex: 1;
    color: var(--text-dark);
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap;
}

/* ========================================
   ВІДГУКИ
   ======================================== */

.reviews {
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.review-info h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.stars {
    color: #ffc107;
    font-size: 16px;
}

.review-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   ПРО НАС
   ======================================== */

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.about-text h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.about-text p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.advantages-list,
.services-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.advantages-list li,
.services-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

.advantages-list li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.services-list li::before {
    content: "→ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.advantages-list li:last-child,
.services-list li:last-child {
    border-bottom: none;
}

/* ========================================
   КОНТАКТИ
   ======================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-details {
    line-height: 1.8;
}

.contact-details p {
    margin: 5px 0;
    color: var(--text-dark);
}

.contact-phone {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin: 5px 0;
}

.contact-phone:hover {
    color: var(--primary-dark);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table td {
    padding: 8px 0;
    color: var(--text-dark);
}

.schedule-table td:first-child {
    width: 150px;
}

/* ========================================
   ФОРМА ЗВ'ЯЗКУ
   ======================================== */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
    white-space: pre-line;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.form-message.hidden {
    display: none;
}

/* ========================================
   КАРТА
   ======================================== */

.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* ========================================
   МЕТОДИ ЗВ'ЯЗКУ
   ======================================== */

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-method-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-method-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 5px 0;
    opacity: 0.9;
}

/* ========================================
   КНОПКА ДЗВІНКА
   ======================================== */

.call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(31, 117, 254, 0.4);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 999;
    text-decoration: none;
}

.call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(31, 117, 254, 0.6);
}

/* ========================================
   ДОПОМІЖНІ КЛАСИ
   ======================================== */

.hidden {
    display: none;
}

/* ========================================
   АДАПТИВНІСТЬ
   ======================================== */

/* Desktop Large (1920px+) */
@media (min-width: 1920px) {
    .hero {
        min-height: 600px;
    }
}

/* Desktop Standard (1366-1920px) */
@media (min-width: 1366px) and (max-width: 1919px) {
    .hero {
        background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                          url('img/hero-desktop.jpg');
        min-height: 500px;
    }
}

/* Laptop (1024-1365px) */
@media (min-width: 1025px) and (max-width: 1365px) {
    .hero {
        background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                          url('img/hero-laptop.jpg');
        min-height: 450px;
    }
}

/* Tablet Landscape (768-1024px) - iPad Pro, Samsung Tab landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                          url('img/hero-tablet-landscape.jpg');
        min-height: 400px;
        padding: 80px 0;
    }
}

/* Tablet Portrait (768-1024px) - iPad, Samsung Tab portrait */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero {
        background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                          url('img/hero-tablet-portrait.jpg');
        min-height: 450px;
        padding: 80px 0;
    }
}

/* Large Mobile Landscape (540-767px) - Android landscape, iPhone Pro Max landscape */
@media (min-width: 540px) and (max-width: 767px) and (orientation: landscape) {
    .hero {
        background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                          url('img/hero-mobile-large-landscape.jpg');
        min-height: 350px;
        padding: 60px 0;
    }
}

/* Standard Mobile Landscape (414-539px) - iPhone, Android landscape */
@media (min-width: 414px) and (max-width: 539px) and (orientation: landscape) {
    .hero {
        background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                          url('img/hero-mobile-landscape.jpg');
        min-height: 320px;
        padding: 50px 0;
    }
}

/* Small Mobile Landscape (<414px) - старі телефони landscape */
@media (max-width: 413px) and (orientation: landscape) {
    .hero {
        background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                          url('img/hero-mobile-small-landscape.jpg');
        min-height: 300px;
        padding: 40px 0;
    }
}

/* Large Mobile Portrait (414-767px) - Android portrait, iPhone Pro Max */
@media (min-width: 414px) and (max-width: 767px) and (orientation: portrait) {
    .hero {
        background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                          url('img/hero-mobile-large-portrait.jpg');
        min-height: 500px;
        padding: 80px 0;
    }
}

/* Standard Mobile Portrait (360-413px) - більшість Android portrait */
@media (min-width: 360px) and (max-width: 413px) and (orientation: portrait) {
    .hero {
        background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                          url('img/hero-mobile-portrait.jpg');
        min-height: 480px;
        padding: 70px 0;
    }
}

/* Small Mobile Portrait (<360px) - старі/компактні телефони */
@media (max-width: 359px) and (orientation: portrait) {
    .hero {
        background-image: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%), 
                          url('img/hero-mobile-small-portrait.jpg');
        min-height: 450px;
        padding: 60px 0;
    }
}

/* Retina дисплеї для мобільних */
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 2),
       only screen and (max-width: 767px) and (min-resolution: 192dpi) {
    /* На мобільних Retina завантажуємо ті самі зображення, 
       бо вони вже оптимізовані під високу щільність пікселів */
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        box-shadow: var(--shadow);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
        max-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 18px 20px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }
    
    .hero {
        min-height: 400px;
        padding: 70px 0;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .header-top .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .service-detail {
        padding: 25px;
    }

    .service-detail h2 {
        font-size: 24px;
    }

    .call-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .logo-text {
        font-size: 12px;
    }
    
    .logo-text span {
        font-size: 11px;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo-divider {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 26px;
    }

    section {
        padding: 40px 0;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .feature-card,
    .service-card,
    .review-card,
    .contact-info-box {
        padding: 20px;
    }
}