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

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

:root {
    --primary-color: #1a5490;
    --accent-color: #e74c3c;
    --phone-color: #ff6b35;
    --light-gray: #f8f9fa;
    --dark-gray: #1a1a1a;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --text-color: #4a4a4a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    order: 1;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    max-width: 320px;
}

.logo-main {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    display: block;
}

.logo-main .logo-company {
    font-size: 1.1em;
    font-weight: 800;
}

.logo-main .logo-company-img {
    height: 1.9em;
    width: auto;
    vertical-align: -0.12em;
    filter: brightness(0) invert(1);
}

.logo-main .logo-tagline {
    font-size: 0.98em;
    font-weight: 600;
    opacity: 0.98;
}

.logo-main .logo-location {
    font-size: 0.98em;
    font-weight: 500;
    opacity: 0.95;
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 0.1rem;
    display: block;
}

nav {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 0;
    order: 3;
}

.header-phone a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background-color: var(--phone-color);
    border-radius: 30px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.header-phone a:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.header-phone-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.header-phone-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    display: inline-block;
}

nav a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

nav a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    font-weight: bold;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.header-phone-mobile {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a6d 100%);
    background-image: url('images/sidlo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 6rem 1rem;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.85) 0%, rgba(13, 58, 109, 0.75) 100%);
    pointer-events: none;
    z-index: 0;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.98;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.quick-contact {
    background-color: transparent;
    padding: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.quick-contact-title {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background-color: var(--phone-color);
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.phone-number:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.phone-number .header-phone-icon {
    width: 32px;
    height: 32px;
    margin-right: 0;
    flex-shrink: 0;
}

.phone-number .phone-number-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.phone-number .phone-number-inner > span:first-child {
    line-height: 1;
}

.phone-number .phone-number-hours {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.95;
    margin-top: 0.35rem;
    line-height: 1.2;
}

.phone-number:hover {
    background-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.contact-hours {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 300;
}

.contact-hours {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.quick-contact .contact-hours {
    margin-bottom: 0;
}

.hero .contact-email {
    margin: 0.15rem 0 0 0;
    font-size: 1rem;
}

.hero .contact-email a {
    color: #ec7063;
    text-decoration: none;
    font-weight: 700;
}

.hero .contact-email a:hover {
    text-decoration: underline;
    color: #c0392b;
}

.phone-number-emergency {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.phone-number-emergency:hover {
    background-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.phone-number-emergency .header-phone-icon {
    width: 20px;
    height: 20px;
}

.phone-number-emergency .phone-number-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.phone-number-emergency .phone-number-inner > span:first-child {
    line-height: 1;
}

.phone-number-emergency .phone-number-hours {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.35rem;
    line-height: 1.2;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a6d 100%);
    color: white;
    padding: 1rem 1rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.page-header .subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1.5rem;
    }
}

section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.subtitle {
    font-size: 0.95rem;
    color: #a1a1a1;
    margin-bottom: 2rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 2rem;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Story Timeline */
.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
}

.timeline-arrow {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid var(--primary-color);
    margin: 1rem auto;
}

@media (min-width: 768px) {
    .story-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .story-timeline .card {
        flex: 0 1 calc(48% - 1rem);
    }

    .timeline-arrow {
        border-left: 20px solid var(--primary-color);
        border-right: 0;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        margin: 0 0.5rem;
        flex: 0 0 auto;
    }
}

@media (min-width: 1024px) {
    .story-timeline {
        flex-direction: column;
    }

    .story-timeline .card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .timeline-arrow {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 20px solid var(--primary-color);
        border-bottom: 0;
        margin: 1rem auto;
    }
}

.card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 84, 144, 0.1);
}

.tips-content {
    padding-top: 1rem;
    padding-bottom: 18rem;
}

.tips-content .tips-grid {
    margin-top: 2.5rem;
    gap: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tip-card {
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    padding: 2.5rem 3rem;
}

.tip-card p {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    color: var(--text-color);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(26, 84, 144, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 84, 144, 0.2);
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.1);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

/* About Section */
.about-intro {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-intro h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.about-intro p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 84, 144, 0.1);
}

.contact-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    vertical-align: middle;
    color: var(--primary-color);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.phone-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin: 0.5rem 0;
    transition: transform 0.2s;
}

.phone-link:hover {
    transform: scale(1.05);
}

.phone-link.emergency {
    color: #c0392b;
}

/* Map */
.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.service-area {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.service-area h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Tips Section */
.tips-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tip-item {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid var(--accent-color);
}

.tip-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.tip-item p {
    color: var(--text-color);
    line-height: 1.7;
}

/* References */
.reference-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 1.5rem;
}

.reference-list .reference-item {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .reference-list {
        grid-template-columns: 1fr;
    }
}

.reference-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.reference-item .date {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 1rem;
    font-weight: 600;
}

.reference-item p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

.reference-image-placeholder {
    margin-top: 1rem;
    padding: 2rem;
    background-color: white;
    border-radius: 4px;
    text-align: center;
    color: #999;
    border: 2px dashed var(--border-color);
}

.reference-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .reference-gallery {
        grid-template-columns: 1fr;
    }
}

.reference-image-placeholder--photo {
    margin-top: 0;
    padding: 0;
    border: none;
    background: transparent;
    overflow: hidden;
    border-radius: 4px;
}

.reference-image-placeholder--photo img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.reference-image-placeholder--photo:hover img {
    transform: scale(1.04);
}

/* Lightbox (reference fotografie) */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-content {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.lightbox-content img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    background: #111;
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-align: center;
    max-width: 90%;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.8rem;
    line-height: 42px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.lightbox-nav svg {
    width: 22px;
    height: 22px;
    display: block;
}

.lightbox-prev svg {
    transform: translateX(-1px);
}

.lightbox-next svg {
    transform: translateX(1px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a6d 100%);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 1rem 1.5rem;
    margin-top: 5rem;
    margin-top: 0;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ddd;
}

.footer-section .footer-registry {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.45;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #ddd;
}

/* Utility Classes */
.link-accent {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.link-accent:hover {
    color: #c0392b;
    text-decoration: underline;
}

.email-primary {
    font-weight: 700;
    font-size: 1.1rem;
}

.email-secondary {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-card .email-secondary {
    color: #666;
}

.contact-card .email-secondary:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

footer .email-secondary {
    color: rgba(255, 255, 255, 0.7);
}

footer .email-secondary:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.badge {
    display: inline-block;
    background-color: var(--success-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.brands-list {
    margin-top: 1.5rem;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 2rem 0;
}

.empty-content {
    min-height: 60vh;
    background-color: transparent;
}

/* Preview Sections */
.preview-section {
    padding: 4rem 1rem;
    background-color: #fff;
}

.preview-section-alt {
    background-color: #fafafa;
}

.preview-section-last {
    padding-bottom: 4rem;
    margin-bottom: 0;
}

.brands-marquee-section {
    background-color: #fff;
    padding: 0 1rem 1rem;
}

.brands-marquee-section .container {
    padding-bottom: 1.5rem;
}

.brands-marquee-section .brands-marquee-heading {
    text-align: center;
    margin-bottom: 1.85rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .brands-marquee-section .container {
        padding-bottom: 1.25rem;
    }
}

.brands-marquee {
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 0;
}

.brands-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0;
    animation: brands-marquee-scroll 28s linear infinite;
    will-change: transform;
}

.brand-logo-item {
    flex: 0 0 auto;
    width: 140px;
    height: 52px;
    margin-right: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.85;
}

@keyframes brands-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.info-strip {
    padding: 1.25rem 1rem;
    background-color: #f0f4f8;
    border-top: 1px solid rgba(26, 84, 144, 0.08);
    border-bottom: 1px solid rgba(26, 84, 144, 0.08);
}

.info-strip-text {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-strip-body {
    display: inline;
}

.info-strip-icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    color: var(--primary-color);
}

.info-strip-icon svg {
    width: 100%;
    height: 100%;
}

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

.preview-section-last .container {
    padding-bottom: 4rem;
}

.preview-section h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.preview-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.preview-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.preview-card .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(26, 84, 144, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 84, 144, 0.2);
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.1);
}

.preview-card .service-icon svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.preview-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.preview-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

.preview-story-wrapper {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.preview-story {
    text-align: center;
    max-height: 180px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0) 100%);
}

.preview-story p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.preview-story p:last-child {
    margin-bottom: 0;
}

.preview-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.review-card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.review-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.review-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.review-text {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.preview-button-wrapper {
    text-align: center;
}

.preview-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

.preview-button:hover {
    background-color: #144a7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .header-phone a {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    nav {
        order: 2;
    }
}

@media (max-width: 768px) {
    .header-container {
        justify-content: space-between;
    }

    .logo {
        max-width: 240px;
    }

    .logo-main {
        font-size: 0.9rem;
    }

    .logo-sub {
        font-size: 0.75rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        padding: 1rem;
        border-bottom: 2px solid var(--accent-color);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .header-phone {
        display: none;
    }

    .header-phone-mobile {
        display: block;
        text-align: center;
        padding: 1rem;
        background-color: rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 0.5rem;
    }

    .header-phone-mobile a {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.7rem 1.5rem;
        background-color: var(--phone-color);
        border-radius: 30px;
        transition: all 0.3s;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }

    .header-phone-mobile .header-phone-icon {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }

    .header-phone-mobile a:hover {
        background-color: #ff5722;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 2rem 0;
    }

    .container {
        padding: 2rem 1rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .map-container {
        height: 300px;
    }

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

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

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

    .preview-section {
        padding: 3rem 1rem;
    }

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

    .brand-logo-item {
        width: 110px;
        height: 46px;
        margin-right: 1.5rem;
    }

    .brands-marquee-track {
        animation-duration: 22s;
    }

    .preview-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .preview-story {
        max-height: 160px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
        min-height: 500px;
        background-position: center center;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .phone-number {
        font-size: 1.4rem;
    }

    .quick-contact {
        padding: 1.5rem;
    }
}
