/*
Theme Name: Unlock Theme
Theme URI: https://example.com/unlock-theme
Author: Trae AI
Author URI: https://example.com
Description: Custom locksmith theme
Version: 1.2
Text Domain: unlock-theme
*/

:root {
    --primary: #002347; /* Dark Blue from screenshot */
    --secondary: #1c2541;
    --accent: #e63946; /* Red */
    --accent-hover: #c92a37;
    --orange: #ff9f1c; /* Orange */
    --orange-hover: #e08e1a;
    --light-bg: #f8f9fa;
    --text: #333333;
    --muted: #e0e0e0;
    --white: #ffffff;
    --border-radius: 4px;
}

html {
    font-size: 17px; /* Base font size */
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 1.06rem; /* Increase body text by ~1px (18px) without affecting rem-based headers */
    overflow-x: hidden;
    padding-top: 80px; /* Compensate for fixed header */
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-header .container.header-container {
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
    text-transform: uppercase;
}

p {
    margin: 0 0 1rem;
}

/* Header */
.site-header {
    background: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Header CTA Styling */
.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    /* margin-left: auto; Removed - handled by Grid */
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.cta-label {
    font-weight: 800; /* Extra bold */
    color: var(--accent); /* Red */
    font-size: 0.95rem; /* Slightly larger */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-cta .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
    white-space: nowrap;
}

/* Header Layout */
.header-container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0; /* Не даём логотипу сжиматься */
}

.main-navigation {
    flex: 1; /* Центрируем меню за счёт свободного пространства */
}

.main-navigation ul {
    justify-content: center;
}

.header-cta {
    margin-left: auto; /* Прижимаем кнопку вправо */
}

/* Navigation Toggle */
.nav-toggle {
    display: none;
    background: var(--white);
    border: 1px solid #e0e0e0;
    color: var(--primary);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.nav-toggle:focus {
    outline: none;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 10px; /* Rounded corners */
}

.site-title-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--primary);
}

.logo-link span:last-child {
    color: #ff9f1c; /* EASY part in orange if needed, but screenshot shows all dark blue or black. Sticking to dark blue based on screenshot text color seems dark */
    color: var(--primary); 
}

@media (max-width: 992px) {
    .header-container {
        flex-direction: row;
        gap: 12px;
    }
    
    .main-navigation {
        flex: 0;
    }
    
    .main-navigation ul {
        justify-content: center;
        gap: 28px;
    }
    
    .header-cta {
        margin-left: 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .main-navigation a {
        font-size: 1.05rem;
    }
    
    .header-cta .btn {
        padding: 10px 18px;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .site-header {
        padding: 12px 0;
        min-height: 64px;
    }

    body {
        padding-top: 64px;
    }
    
    .site-header .container.header-container {
        padding: 0 13px;
    }
    
    .header-container {
        gap: 10px;
    }

    .logo-link {
        gap: 8px;
    }

    .logo-img {
        height: 40px;
        border-radius: 8px;
    }

    .site-title-text {
        font-size: 1.4rem;
        letter-spacing: 0.8px;
    }
    
    .site-branding {
        margin-right: auto;
        order: 1;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 15px);
        right: 0;
        left: 0;
        background: var(--white);
        border-top: 1px solid #e5e5e5;
        padding: 12px 20px 16px;
        display: none;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-toggle {
        display: block;
        margin-left: 12px;
        order: 3;
        flex-shrink: 0;
        font-size: 1.28rem;
        padding: 5px 6px;
    }

    .header-cta {
        display: flex;
        gap: 12px;
        order: 2;
        flex-shrink: 0;
        margin-left: auto;
        position: static;
        visibility: visible;
        pointer-events: auto;
    }

    .header-cta .btn {
        font-size: 0.72rem;
        padding: 6px 13px;
    }
}

@media (max-width: 576px) {
    .header-cta {
        margin-left: auto;
    }
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.main-navigation a {
    font-weight: 600;
    font-size: 1.22rem;
    color: var(--primary);
    text-transform: capitalize;
    white-space: nowrap;
}



.main-navigation a:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
    gap: 10px;
}

.btn-red {
    background: var(--accent);
    color: var(--white);
}

.btn-red:hover {
    background: var(--accent-hover);
    color: var(--white);
}

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

.btn-orange:hover {
    background: var(--orange-hover);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--primary);
    background-image: linear-gradient(rgba(0, 35, 71, 0.85), rgba(0, 35, 71, 0.85)), url('./assets/images/hero-bg.jpg'); /* Gradient fallback/overlay */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    display: none; /* Removed separate overlay div since we use gradient on background-image now, or keep it but update z-index */
}

/* Re-adding overlay div style if needed, but linear-gradient on background-image is cleaner if image is missing */
/* Actually, let's keep the overlay div for consistency with HTML but make it transparent or just rely on background color if image is missing */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 35, 71, 0.5); /* Lighter overlay since we have background color */
    z-index: 1;
    display: block;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-animate {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero .btn.btn-orange {
    position: relative;
    z-index: 3;
}

.hero .btn.btn-orange {
    animation: pulse-call 2.4s ease-in-out infinite;
}

@keyframes pulse-call {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.25);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 12px 2px rgba(230, 57, 70, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.0);
    }
}

.hero-slider-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s;
}

.hero-slider-arrow:hover {
    color: var(--white);
}

/* Features Bar */
.features-bar {
    background: #022c57; /* Slightly lighter shade of primary (#002347) */
    padding: 30px 0;
}

.features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--orange);
    font-size: 1.5rem;
}

.feature-item span {
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
}

.feature-text-small {
    font-size: 0.88rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .features-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
        column-gap: 20px;
        row-gap: 16px;
    }

    .feature-item span, .feature-text-small {
        font-size: 0.85rem;
        white-space: nowrap;
    }

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

    .hero-buttons {
        gap: 12px;
        flex-wrap: nowrap;
    }
    
    .hero-buttons .btn {
        padding: 12px 14px;
        font-size: 0.85rem;
        flex: 1;
        white-space: nowrap;
    }

    .hero-container {
        justify-content: center;
    }

    .hero-slider-arrow {
        position: absolute;
        top: 190px;
        transform: translateY(-50%);
        z-index: 5;
    }

    .hero-slider-arrow.left {
        left: -5px;
    }

    .hero-slider-arrow.right {
        right: -5px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
}

/* Hero Text Animation - Slide */
#hero-text {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    opacity: 1;
    transform: translateX(0);
    display: inline-block;
}

/* Slide Out Left (when clicking right arrow - current text slides out to left) */
.slide-out-left {
    opacity: 0 !important;
    transform: translateX(-50px) !important;
}

/* Slide Out Right (when clicking left arrow - current text slides out to right) */
.slide-out-right {
    opacity: 0 !important;
    transform: translateX(50px) !important;
}

/* Slide In From Right (new text slides in from right) */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRightAnimation 0.5s ease-out forwards;
}

/* Slide In From Left (new text slides in from left) */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeftAnimation 0.5s ease-out forwards;
}

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

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

/* Trusted Partner Section */
.trusted-partner {
    background: var(--primary);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.trusted-partner-container {
    max-width: 900px;
    margin: 0 auto;
}

.trusted-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.trusted-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.8;
}

.trusted-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .trusted-stats {
        gap: 20px;
        flex-wrap: nowrap;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}

/* Services Z-Layout */
.services-z-layout {
    padding: 80px 0;
    background: var(--white);
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    margin-top: -10px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

@media (min-width: 992px) {
    .service-row {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .service-row.reverse .service-image {
        order: 2;
    }
    
    .service-row.reverse .service-content {
        order: 1;
    }
}

.service-image img {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-divider {
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 20px 0;
}

.service-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.btn-dark-blue:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-avatar {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.stars {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0;
}

/* Secure Home Section */
.secure-home-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.secure-home-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: stretch; /* Align items to full height */
}

@media (min-width: 992px) {
    .secure-home-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Flyer Styling (CSS-only flyer) */
.secure-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    /* aspect-ratio: 3/4; Removed to show full image height */
    height: 100%; /* Take full height of grid cell */
}

.flyer-image {
    width: 100%;
    height: 100%; /* Fill container height */
    object-fit: cover;
}

.flyer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: var(--white);
}

.flyer-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.flyer-text h2 {
    color: yellow;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.flyer-services {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flyer-text h1 {
    font-size: 3.5rem;
    color: #70e000; /* Bright Green */
    margin-bottom: 20px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.flyer-brand {
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.flyer-phone {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 5px;
}

.flyer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.flyer-checks {
    text-align: left;
    font-size: 0.9rem;
}

.flyer-checks i {
    color: yellow;
    margin-right: 5px;
}

.flyer-offer {
    font-size: 2rem;
    font-weight: 900;
    color: yellow;
    line-height: 1;
}

/* Secure Content Styling */
.secure-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.secure-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.secure-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

.secure-list i {
    color: #00a8e8; /* Cyan Blue */
    margin-right: 15px;
    font-size: 1.2rem;
}

.btn-call-now {
    margin-top: 20px; /* Reduced margin */
    padding: 15px 40px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 159, 28, 0.4); /* Orange shadow */
}

.btn-call-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 159, 28, 0.6);
}

.btn-call-now i {
    margin-right: 10px;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.section-tag {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 12px;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    padding: 10px;
    border: 4px solid var(--white);
    animation: rotate 20s linear infinite;
}

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

/* Mobile Units Section */
.mobile-units-section {
    padding: 80px 0;
    background: var(--light-bg);
}

/* Services Grid */
.services {
    background: var(--white);
    padding: 80px 0;
}

.service-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s;
    text-align: center;
}

/* Testimonial Avatar */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--orange);
    background: #eee;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    background: #001529; /* Darker than primary */
    color: #cbd5e1;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr; /* Wider first column */
        align-items: start;
    }
    
    /* Align Quick Links and Contact Us with the text below the logo */
    .links-widget, .contact-widget {
        margin-top: 12px; /* Subtle offset to align with KEYEASY text */
    }
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo i {
    color: var(--orange);
}

.brand-widget p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 350px;
}

/* Contact Form Section */
.contact-request-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.contact-request-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .contact-request-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .contact-text {
        flex: 1;
        padding-right: 50px;
    }
    
    .contact-form-container {
        flex: 1;
        max-width: 500px;
    }
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.contact-features i {
    color: var(--orange);
    margin-right: 15px;
    background: rgba(255, 159, 28, 0.1);
    padding: 8px;
    border-radius: 50%;
}

.simple-contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.simple-contact-form input,
.simple-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.simple-contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.btn-block {
    width: 100%;
    background: var(--primary);
    color: var(--white);
}

.btn-block:hover {
    background: var(--secondary);
}

.form-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
    width: 150px;
    text-align: center;
}

.partner-item:hover {
    opacity: 1;
}

.partner-item i {
    color: var(--primary);
}

.partner-item span {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: none;
}

/* Footer Widgets */
.footer-widget h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--orange);
}

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

.footer-widget ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget a {
    color: #cbd5e1;
    transition: color 0.3s;
}

.footer-widget a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.site-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Hero Arrow Popups */
.arrow-popup {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 35, 71, 0.95);
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10;
}

.hero-slider-arrow.left .arrow-popup {
    left: 50px;
    transform: translateY(-50%) translateX(-20px);
}

.hero-slider-arrow.right .arrow-popup {
    right: 50px;
    transform: translateY(-50%) translateX(20px);
}

.hero-slider-arrow.active .arrow-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.hero-slider-arrow {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hero-slider-arrow:active {
    transform: scale(0.95) translateY(-50%);
}

/* Partner Logos */
.partner-logo {
    max-width: 140px;
    height: 80px;
    width: 100%;
    object-fit: contain; 
    opacity: 1;
    transition: all 0.3s;
    filter: none !important;
}

.partner-item:hover .partner-logo {
    opacity: 1; 
    transform: scale(1.05);
}
