/*
Theme Name: Goline
Description: Theme for Goline.
Author: Goline
Version: 1.0
Text Domain: goline
License: -
*/

:root {
    --brandsite-max-width: 75rem;
    --page-padding: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ============================================
   HUB (HOME) PAGE STYLES
   ============================================ */

/* Hub Wrapper */
.hub-wrapper {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #04142a 0%, #0a1f3d 100%);
    overflow: hidden;
}

.hub-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

/* Hub Header */
.hub-header {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.hub-header-container {
    margin: 0 auto;
    max-width: var(--brandsite-max-width);
    padding: 0 var(--page-padding);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub-logo {
    display: flex;
    align-items: center;
}

.hub-logo a {
    display: flex;
    text-decoration: none;
}

.hub-logo-icon {
    width: auto;
    height: 10rem;
    object-fit: contain;
    display: block;
}

/* Hub Hero Section */
.hub-hero {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 4rem var(--page-padding);
    max-width: var(--brandsite-max-width);
    margin: 0 auto;
}

.hub-hero-content {
    color: white;
}

.hub-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #a8c5da 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hub-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    color: #a8c5da;
    text-transform: uppercase;
}

.hub-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hub-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.05em;
}

/* Business Areas Section */
.hub-business-areas {
    position: relative;
    z-index: 5;
    padding: 4rem var(--page-padding) 5rem;
    background: linear-gradient(180deg, rgba(4, 20, 42, 0) 0%, rgba(4, 20, 42, 0.95) 100%);
}

.hub-areas-container {
    max-width: var(--brandsite-max-width);
    margin: 0 auto;
}

.hub-areas-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

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

/* Business Area Card */
.hub-area-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hub-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.hub-area-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hub-area-card:hover::before {
    opacity: 1;
}

.hub-card-icon {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.hub-card-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hub-card-title {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: 0.05em;
}

.hub-card-description {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.hub-card-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #a8c5da;
    letter-spacing: 0.05em;
}

.hub-card-cta svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.hub-area-card:hover .hub-card-cta svg {
    transform: translateX(5px);
}

/* Company Info Section */
.hub-company-info {
    position: relative;
    z-index: 5;
    background: rgba(4, 20, 42, 0.95);
    padding: 4rem var(--page-padding);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-info-container {
    max-width: var(--brandsite-max-width);
    margin: 0 auto;
}

.hub-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.hub-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.hub-info-item {
    text-align: center;
}

.hub-info-icon {
    margin-bottom: 1.5rem;
}

.hub-info-icon svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.hub-info-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.hub-info-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* Hub Contact Section */
.hub-contact {
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, #0a1f3d 0%, #04142a 100%);
    padding: 4rem var(--page-padding);
    text-align: center;
}

.hub-contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.hub-contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.hub-contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
}

.hub-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.hub-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hub-contact-item svg {
    width: 24px;
    height: 24px;
}

.hub-contact-item a {
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.hub-contact-item a:hover {
    color: #a8c5da;
}

/* Responsive Design for Hub */
@media (max-width: 768px) {
    .hub-main-title {
        font-size: 2.5rem;
    }

    .hub-subtitle {
        font-size: 1.3rem;
    }

    .hub-description {
        font-size: 1rem;
    }

    .hub-areas-title,
    .hub-info-title,
    .hub-contact-title {
        font-size: 2rem;
    }

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

    .hub-logo-icon {
        height: 6rem;
    }

    .hub-hero {
        padding: 2rem var(--page-padding);
    }
}

/* ============================================
   END HUB PAGE STYLES
   ============================================ */

/* Header and Hero Wrapper */
.header-hero-wrapper {
    position: relative;
    overflow: hidden;
}

.header-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Hero Header */
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    width: 100%;
}

.hero-header-container {
    margin: 0 auto;
    max-width: var(--brandsite-max-width);
    padding: .25rem var(--page-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
}

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

.logo a {
    display: flex;
    text-decoration: none;
}

.logo-icon {
    width: auto;
    height: 10rem;
    object-fit: contain;
    display: block;
}

.menu-toggle {
    width: 30px;
    height: 30px;
    background: white;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #04142a;
    display: block;
}

/* Top Navigation */
.top-navigation {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.top-nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, font-size 0.3s ease;
    white-space: nowrap;
}

.top-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #6bb3ff;
}

.top-nav-link.active {
    color: #6bb3ff;
    font-size: 16px;
    font-weight: 600;
    background-color: rgba(107, 179, 255, 0.15);
}

@media (max-width: 968px) {
    .header-hero-video {
        left: -50%;
        width: 200%;
    }
    
    .hero-header-container {
        position: relative;
        z-index: 100;
        padding: 1rem var(--page-padding);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .logo {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .top-navigation {
        position: static;
        transform: none;
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        right: auto;
        top: auto;
        margin-right: 0;
        order: 2;
        flex-wrap: wrap;
    }
    
    .top-nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .top-nav-link.active {
        font-size: 15px;
    }
    
    .menu-toggle {
        z-index: 1000;
        position: relative;
        order: 3;
        margin-left: 0;
        margin-top: 0;
        align-self: center;
    }
}

@media (max-width: 768px) {
    .header-hero-video {
        left: -50%;
        width: 200%;
    }
    
    .hero-header-container {
        padding: 1rem var(--page-padding);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .top-navigation {
        gap: 0.3rem;
        margin-right: 0;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .top-nav-link {
        font-size: 13px;
        padding: 7px 10px;
    }
    
    .top-nav-link.active {
        font-size: 14px;
    }
    
    .menu-toggle {
        display: flex !important;
        z-index: 1000;
        position: relative;
        margin-left: 0;
        margin-top: 0;
        width: 35px;
        height: 35px;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .header-hero-video {
        left: -90%;
        width: 200%;
    }
    
    .hero-header-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .top-navigation {
        gap: 0.2rem;
        margin-right: 0;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .top-nav-link {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .top-nav-link.active {
        font-size: 13px;
    }
    
    .menu-toggle {
        display: flex !important;
        z-index: 1000;
        position: relative;
        width: 40px;
        height: 40px;
        margin-left: 0;
        margin-top: 0;
        background: white;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        align-self: center;
    }
    
    .hero-header-container {
        padding: 1rem var(--page-padding);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .logo-icon {
        height: 6rem;
    }
}

/* Sidebar Menu */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #04142a;
    z-index: 999;
    transition: left 0.3s ease;
    padding: 40px 0;
}

.sidebar.active {
    left: 0;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.2s;
}

.sidebar-close:hover {
    transform: scale(1.1);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 60px 0 0 0;
    gap: 0;
}

.sidebar-item {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 40px;
    transition: all 0.3s;
    border-radius: 0;
    display: block;
    width: 100%;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-item.active {
    background: white;
    color: #04142a;
    border-radius: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: transparent;
    position: relative;
    padding: 120px 40px 80px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    width: 100%;
    max-width: var(--brandsite-max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding);
}

.hero-text {
    z-index: 2;
    max-width: 600px;
    margin-left: 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    color: #6bb3ff;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.hero-description {
    font-size: 16px;
    color: white;
    margin-bottom: 40px;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

.cta-button {
    background: white;
    color: #04142a;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
}


/* About Section */
.about {
    background: white;
    padding: 100px 40px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 48px;
    font-weight: bold;
    color: #04142a;
    line-height: 1.2;
}

.about-description {
    color: #04142a;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
}

.about-description p {
    font-size: inherit;
    line-height: inherit;
}

/* Industries Section */
.industries {
    background: white;
    padding: 100px 40px;
}

.industries-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

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

.industry-icon {
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.industry-icon svg {
    width: 100%;
    height: 100%;
    max-width: 100px;
    max-height: 100px;
}

.industry-title {
    font-size: 24px;
    font-weight: bold;
    color: #04142a;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.industry-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

/* Services Section */
.services {
    background: #04142a;
    padding: 100px 40px;
    text-align: center;
}

.services-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 60px;
}

.services-grid {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: stretch;
}

/* Index Services Grid - 3 columns, centered */
.index-services-grid {
    width: 90%;
    max-width: 1200px;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.service-card {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* Index service cards - larger padding and font sizes */
.index-services .service-card {
    padding: 30px 35px;
}

.index-services .service-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.index-services .service-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(107, 179, 255, 0.3);
}

.service-icon {
    margin: 0 auto 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

/* Index service icons - larger size */
.index-services .service-icon svg {
    width: 100px;
    height: 100px;
}

.index-services .service-icon {
    min-height: 100px;
    margin: 0 auto 20px;
}

.service-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    color: white;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.service-description {
    font-size: 12px;
    line-height: 1.3;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
    text-align: center;
    min-height: auto;
}

.service-subtitle {
    font-size: 14px;
    font-weight: bold;
    margin: 10px auto 6px auto;
    color: #6bb3ff;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    min-height: auto;
    width: 100%;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    text-align: center;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.service-list li {
    font-size: 12px;
    line-height: 1.3;
    opacity: 0.9;
    margin-bottom: 4px;
    padding-left: 0;
    position: relative;
    font-family: 'Inter', sans-serif;
    text-align: center;
    list-style: none;
}

.service-list li::before {
    content: "• ";
    color: #6bb3ff;
    font-weight: bold;
    font-size: 20px;
    display: inline;
}

.service-conclusion {
    font-size: 12px;
    line-height: 1.3;
    opacity: 0.95;
    font-family: 'Inter', sans-serif;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-style: italic;
    text-align: center;
    min-height: auto;
}

/* Property Services Section */
.property-services {
    background: #04142a;
    padding: 100px 40px;
    text-align: center;
}

.property-services-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 60px;
}

.property-services-grid {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.property-service-card {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.property-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(107, 179, 255, 0.3);
}

.property-service-icon {
    margin: 0 auto 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    flex-shrink: 0;
}

.property-service-icon svg {
    width: 60px;
    height: 60px;
    color: white;
}

.property-service-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    color: white;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.property-service-description {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
    text-align: center;
    min-height: auto;
}

.property-service-subtitle {
    font-size: 15px;
    font-weight: bold;
    margin: 12px auto 8px auto;
    color: #6bb3ff;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    min-height: auto;
    width: 100%;
}

.property-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    text-align: center;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.property-service-list li {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 5px;
    padding-left: 0;
    position: relative;
    font-family: 'Inter', sans-serif;
    text-align: center;
    list-style: none;
}

.property-service-list li::before {
    content: "• ";
    color: #6bb3ff;
    font-weight: bold;
    font-size: 20px;
    display: inline;
}

.property-service-conclusion {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.95;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-style: italic;
    text-align: center;
    min-height: auto;
}

/* Clients Section */
.clients {
    background: white;
    padding: 100px 40px;
    text-align: center;
}

.clients-title {
    font-size: 48px;
    font-weight: bold;
    color: #04142a;
    margin-bottom: 60px;
}

.clients-content {
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(4, 20, 42, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: white;
    transition: background 0.3s, transform 0.3s;
}

.slider-arrow:hover {
    background: rgba(4, 20, 42, 1);
    transform: translateY(-50%) scale(1.1);
}

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

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    align-items: center;
    width: 100%;
    min-height: 250px;
}

.slider-track.no-transition {
    transition: none;
}

.slider-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 30px 20px;
    transition: opacity 0.5s ease-in-out;
    box-sizing: border-box;
}

.slider-slide:not(.active) {
    opacity: 1;
}

.slider-slide.active {
    opacity: 1;
}

@media (min-width: 601px) {
    .slider-slide {
        min-width: 33.33%;
    }
}

.client-logo-img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
    display: block;
    margin: 0 auto;
}

.client-logo-small {
    max-width: 60%;
    max-height: 120px;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #04142a;
    cursor: pointer;
}

.dot.active {
    background: #04142a;
}

/* Benefits Section */
.benefits {
    background: #04142a;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(107, 179, 255, 0.1);
    border-radius: 50%;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(107, 179, 255, 0.1);
    border-radius: 50%;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.benefit-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.benefit-text {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

/* Requirements Section */
.requirements {
    background: white;
    padding: 100px 40px;
    position: relative;
}

.requirements-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.requirements-title {
    font-size: 48px;
    font-weight: bold;
    color: #04142a;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

.requirements-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 20px;
    color: #04142a;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.checkmark {
    color: #6bb3ff;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.cta-title {
    font-size: 36px;
    font-weight: bold;
    color: #04142a;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.cta-text {
    font-size: 20px;
    color: #04142a;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.cta-email {
    color: #6bb3ff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.cta-email:hover {
    color: #04142a;
    text-decoration: underline;
}

/* How We Work Section */
.how-we-work {
    background: white;
    padding: 100px 40px;
    position: relative;
}

.how-we-work-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-we-work-title {
    font-size: 48px;
    font-weight: bold;
    color: #04142a;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.how-we-work-intro {
    font-size: 20px;
    color: #04142a;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.how-we-work-steps {
    max-width: 900px;
    margin: 0 auto 40px;
}

.steps-title {
    font-size: 28px;
    font-weight: bold;
    color: #04142a;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 18px;
    color: #04142a;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    counter-increment: step-counter;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #6bb3ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
}

.step-text {
    flex: 1;
    padding-top: 8px;
}

.how-we-work-conclusion {
    font-size: 20px;
    color: #04142a;
    text-align: center;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-weight: bold;
    max-width: 900px;
    margin: 0 auto;
}

/* Investor Zone Section */
.investor-zone {
    background: #04142a;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.investor-zone::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(107, 179, 255, 0.1);
    border-radius: 50%;
}

.investor-zone::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(107, 179, 255, 0.1);
    border-radius: 50%;
}

.investor-zone-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.investor-zone-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
}

.investor-zone-section {
    max-width: 900px;
    margin: 0 auto 40px;
}

.investor-zone-intro {
    font-size: 22px;
    color: white;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-weight: bold;
}

.investor-zone-subtitle {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

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

.investor-zone-list li {
    font-size: 18px;
    color: white;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.investor-zone-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6bb3ff;
    font-weight: bold;
    font-size: 24px;
}

.investor-zone-conclusion {
    font-size: 22px;
    color: white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-weight: bold;
    max-width: 900px;
    margin: 50px auto 0;
}

/* Client Zone Section */
.client-zone {
    background: #04142a;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.client-zone::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(107, 179, 255, 0.1);
    border-radius: 50%;
}

.client-zone::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(107, 179, 255, 0.1);
    border-radius: 50%;
}

.client-zone-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.client-zone-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
}

.client-zone-section {
    max-width: 900px;
    margin: 0 auto 40px;
}

.client-zone-intro {
    font-size: 22px;
    color: white;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-weight: bold;
}

.client-zone-subtitle {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

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

.client-zone-list li {
    font-size: 18px;
    color: white;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.client-zone-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6bb3ff;
    font-weight: bold;
    font-size: 24px;
}

/* Standard Premium Section */
.standard-premium {
    background: white;
    padding: 100px 40px;
    position: relative;
}

.standard-premium-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.standard-premium-title {
    font-size: 48px;
    font-weight: bold;
    color: #04142a;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

.standard-premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.standard-premium-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 20px;
    color: #04142a;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.premium-checkmark {
    color: #6bb3ff;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.premium-text {
    flex: 1;
    padding-top: 4px;
}

.standard-premium-conclusion {
    font-size: 24px;
    color: #04142a;
    text-align: center;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-weight: bold;
    max-width: 900px;
    margin: 50px auto 0;
    padding-top: 40px;
    border-top: 2px solid #6bb3ff;
    font-style: italic;
}

/* CTA Contact Section */
.cta-contact {
    background: #04142a;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.cta-contact::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(107, 179, 255, 0.1);
    border-radius: 50%;
}

.cta-contact::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(107, 179, 255, 0.1);
    border-radius: 50%;
}

.cta-contact-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-contact-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.cta-contact-subtitle {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.cta-contact-intro {
    font-size: 22px;
    color: white;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.cta-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.cta-contact-list li {
    font-size: 18px;
    color: white;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.cta-contact-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6bb3ff;
    font-weight: bold;
    font-size: 24px;
}

.cta-contact-info {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-contact-company {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.cta-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cta-contact-item {
    font-size: 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-icon {
    font-size: 24px;
}

.cta-contact-link {
    color: #6bb3ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-contact-link:hover {
    color: white;
    text-decoration: underline;
}

.cta-contact-conclusion {
    font-size: 24px;
    color: white;
    text-align: center;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-weight: bold;
    font-style: italic;
    margin-top: 40px;
}

/* Pricing Section */
.pricing {
    background: #04142a;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(107, 179, 255, 0.1);
    border-radius: 50%;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(107, 179, 255, 0.1);
    border-radius: 50%;
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 56px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 4px;
}

.pricing-subtitle {
    font-size: 16px;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-wrapper {
    width: 100%;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 179, 255, 0.2);
    border-color: rgba(107, 179, 255, 0.3);
}

.pricing-card-image {
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pricing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.pricing-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-card-content {
    padding: 25px;
}

.pricing-car-name {
    font-size: 18px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
}

.pricing-car-price {
    font-size: 32px;
    color: #6bb3ff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.pricing-payment {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 60px;
}

.pricing-payment-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.pricing-payment-content {
    flex: 1;
}

.pricing-payment-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
}

.pricing-payment-methods {
    font-size: 20px;
    color: #6bb3ff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .pricing-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card-image {
        height: 250px;
    }
    
    .pricing-card-content {
        padding: 20px;
    }
    
    .pricing-car-name {
        font-size: 16px;
    }
    
    .pricing-car-price {
        font-size: 28px;
    }
    
    .pricing-payment {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .pricing-payment-title {
        font-size: 24px;
    }
    
    .pricing-payment-methods {
        font-size: 18px;
    }
}

/* Pricing card overlay and no photos */
.pricing-card {
    position: relative;
    cursor: pointer;
}

.pricing-card[data-car-folder="none"] {
    cursor: default;
}

.pricing-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.pricing-card-view-text {
    color: white;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
}

.pricing-card-no-photos {
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.pricing-no-photos-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* Car Gallery Modal */
.car-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.car-gallery-modal.active {
    display: flex;
}

.car-gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    padding: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.car-gallery-close:hover {
    transform: scale(1.1);
}

.car-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(107, 179, 255, 0.8);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    color: white;
    transition: background 0.3s, transform 0.3s;
}

.car-gallery-arrow:hover {
    background: rgba(107, 179, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

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

.car-gallery-arrow-left {
    left: 30px;
}

.car-gallery-arrow-right {
    right: 30px;
}

.car-gallery-arrow svg {
    width: 30px;
    height: 30px;
}

.car-gallery-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.car-gallery-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
}

.car-gallery-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(107, 179, 255, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

@media (max-width: 768px) {
    .pricing-card-image {
        height: 250px;
    }
    
    .pricing-slider-container {
        min-height: 500px;
    }
    
    .pricing-card-overlay {
        height: 250px;
    }
    
    .pricing-card-view-text {
        font-size: 14px;
    }
    
    .car-gallery-close {
        top: 10px;
        right: 10px;
        font-size: 50px;
        width: 50px;
        height: 50px;
    }
    
    .car-gallery-arrow {
        width: 50px;
        height: 50px;
    }
    
    .car-gallery-arrow-left {
        left: 10px;
    }
    
    .car-gallery-arrow-right {
        right: 10px;
    }
    
    .car-gallery-arrow svg {
        width: 25px;
        height: 25px;
    }
    
    .car-gallery-counter {
        font-size: 16px;
        padding: 8px 16px;
        bottom: -40px;
    }
}

/* Contact Section */
.contact {
    background: #04142a;
    padding: 100px 40px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-item-title {
    font-size: 24px;
    font-weight: bold;
    color: #6bb3ff;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.contact-item-content {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.contact-item-content p {
    margin: 5px 0;
}

.contact-item-content strong {
    font-weight: bold;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-title {
    font-size: 36px;
    font-weight: bold;
    color: #6bb3ff;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.form-consent-text {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.form-consent-text a {
    color: #6bb3ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-consent-text a:hover {
    color: white;
    text-decoration: underline;
}

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

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

.form-group label {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.required {
    color: #6bb3ff;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: white;
    color: #04142a;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6bb3ff;
}

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

.submit-button {
    background: #6bb3ff;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Inter', sans-serif;
    align-self: flex-end;
    margin-top: 10px;
}

.submit-button:hover {
    background: #5aa3e6;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Contact Form 7 Styles */
.wpcf7 {
    width: 100%;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wpcf7-form p {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.wpcf7-form label {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: white;
    color: #04142a;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
    width: 100%;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #6bb3ff;
}

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

.wpcf7-form input[type="submit"] {
    background: #6bb3ff;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-family: 'Inter', sans-serif;
    align-self: flex-end;
    margin-top: 10px;
}

.wpcf7-form input[type="submit"]:hover {
    background: #5aa3e6;
    transform: translateY(-2px);
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
}

.wpcf7-response-output {
    margin: 15px 0 0;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: white;
}

.wpcf7-mail-sent-ok {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: white;
}

.wpcf7-spinner {
    display: none;
}

/* Privacy Policy Section */
.privacy-policy {
    background: white;
    padding: 80px 40px;
}

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

.privacy-intro {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(107, 179, 255, 0.05);
    border-left: 4px solid #6bb3ff;
    border-radius: 5px;
}

.privacy-intro p {
    color: #04142a;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(4, 20, 42, 0.1);
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.privacy-section-title {
    font-size: 28px;
    font-weight: bold;
    color: #04142a;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}

.privacy-section > p {
    color: #04142a;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.privacy-list li {
    color: #04142a;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.privacy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6bb3ff;
    font-weight: bold;
    font-size: 24px;
}

.privacy-list a {
    color: #6bb3ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-list a:hover {
    color: #04142a;
    text-decoration: underline;
}

.privacy-list-numbered {
    list-style: none;
    counter-reset: item;
    margin: 15px 0;
    padding: 0;
}

.privacy-list-numbered > li {
    counter-increment: item;
    color: #04142a;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.privacy-list-numbered > li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #6bb3ff;
    font-weight: 600;
    font-size: 16px;
}

.privacy-list-numbered > li strong {
    color: #6bb3ff;
    font-weight: 600;
}

.privacy-sublist {
    list-style: none;
    margin: 10px 0 10px 0;
    padding: 0;
}

.privacy-sublist li {
    color: #04142a;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.privacy-sublist li::before {
    content: "−";
    position: absolute;
    left: 0;
    color: #6bb3ff;
    font-weight: normal;
    font-size: 18px;
}

.privacy-subsection {
    margin-top: 25px;
    padding: 20px;
    background: rgba(107, 179, 255, 0.02);
    border-radius: 8px;
}

.privacy-subsection h4 {
    font-size: 20px;
    font-weight: 600;
    color: #6bb3ff;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.privacy-subsection .privacy-list {
    margin-top: 10px;
}

.privacy-footer {
    margin-top: 60px;
    padding: 40px;
    background: #04142a;
    border-radius: 10px;
    text-align: center;
}

.privacy-footer-text {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.privacy-footer-text strong {
    color: #6bb3ff;
    font-size: 22px;
    display: block;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 60px 20px;
    }
    
    .privacy-section-title {
        font-size: 22px;
    }
    
    .privacy-intro {
        padding: 20px;
    }
    
    .privacy-intro p,
    .privacy-section > p,
    .privacy-list li,
    .privacy-list-numbered > li,
    .privacy-sublist li {
        font-size: 15px;
    }
    
    .privacy-subsection h4 {
        font-size: 18px;
    }
    
    .privacy-footer {
        padding: 30px 20px;
    }
    
    .privacy-footer-text {
        font-size: 16px;
    }
    
    .privacy-footer-text strong {
        font-size: 20px;
    }
}

/* Footer */
.footer {
    background: #04142a;
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.footer-content {
    margin: 0 auto;
    max-width: var(--brandsite-max-width);
    padding: .25rem var(--page-padding);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo a {
    display: flex;
    text-decoration: none;
}

.footer-logo-icon {
    width: 100%;
    height: 6rem;
    object-fit: contain;
    display: block;
}

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

.footer-copyright p {
    color: white;
    font-size: 14px;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.footer-privacy {
    margin-top: 10px !important;
}

.footer-privacy a {
    color: #6bb3ff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-privacy a:hover {
    color: white;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .hero-header-container {
        padding: 2rem 0;
        margin-bottom: 3rem;
    }
    
    .hero-content {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .hero-text {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
        margin-top: 1rem;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero {
        padding-bottom: 80px;
    }
    
    .industries-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }
    
    .index-services-grid {
        grid-template-columns: 1fr;
        width: 90%;
        gap: 25px;
    }
    
    .property-services-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .benefits-title {
        font-size: 36px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        align-items: center;
        text-align: center;
    }
    
    .contact-form-wrapper {
        margin: 0 auto;
    }
    
    .contact-form-title {
        text-align: center;
    }
    
    .services-title,
    .property-services-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 32px;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .services-title svg,
    .property-services-title svg {
        display: block;
        margin-right: 0;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
    }
    
    .how-we-work-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 32px;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .how-we-work-title svg {
        display: block;
        margin-right: 0;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
    }
    
    .client-zone-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 28px;
        word-wrap: break-word;
        padding: 0 10px;
        line-height: 1.2;
    }
    
    .client-zone-title svg {
        display: block;
        margin-right: 0;
        margin-bottom: 0;
        width: 50px;
        height: 50px;
    }
    
    .investor-zone-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 28px;
        word-wrap: break-word;
        padding: 0 10px;
        line-height: 1.2;
    }
    
    .investor-zone-title svg {
        display: block;
        margin-right: 0;
        margin-bottom: 0;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-title {
        font-size: 28px;
    }
    
    .benefit-text {
        font-size: 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        align-items: center;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .contact-form-title {
        font-size: 28px;
        text-align: center;
    }
    
    .services-title,
    .property-services-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 28px;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .services-title svg,
    .property-services-title svg {
        display: block;
        margin-right: 0;
        margin-bottom: 0;
        width: 50px;
        height: 50px;
    }
    
    .how-we-work-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 28px;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .how-we-work-title svg {
        display: block;
        margin-right: 0;
        margin-bottom: 0;
        width: 50px;
        height: 50px;
    }
    
    .client-zone-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 24px;
        word-wrap: break-word;
        padding: 0 10px;
        line-height: 1.2;
    }
    
    .client-zone-title svg {
        display: block;
        margin-right: 0;
        margin-bottom: 0;
        width: 45px;
        height: 45px;
    }
    
    .investor-zone-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 24px;
        word-wrap: break-word;
        padding: 0 10px;
        line-height: 1.2;
    }
    
    .investor-zone-title svg {
        display: block;
        margin-right: 0;
        margin-bottom: 0;
        width: 45px;
        height: 45px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .hero-title,
    .about-title,
    .services-title,
    .clients-title {
        font-size: 36px;
    }
    
    .hero-header-container {
        padding: 2.5rem 0;
        margin-bottom: 4rem;
    }
    
    .hero-content {
        margin-top: 4rem;
        padding-top: 4rem;
    }
    
    .hero-text {
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
        margin-top: 1.5rem;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero {
        padding-bottom: 100px;
    }
    
    .slider-slide {
        min-width: 100%;
        width: 100%;
    }
    
    .slider-slide:not(.active) {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        pointer-events: none;
    }
    
    .slider-slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
        transform: scale(1);
    }
    
    .slider-track {
        position: relative;
    }
    
    .client-logo-img {
        max-width: 100%;
        max-height: 250px;
        width: auto;
        height: auto;
    }
    
    .client-logo-small {
        max-width: 60%;
        max-height: 150px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow-left {
        left: 10px;
    }
    
    .slider-arrow-right {
        right: 10px;
    }
    
    .slider-container {
        overflow: hidden;
    }
    
    .footer-copyright p {
        white-space: normal;
        font-size: 12px;
    }
    
    .footer-privacy a {
        font-size: 12px;
    }
}
