:root {
    --header-height: 100px;
    --primary: #c19a6b;
    --primary-dark: #a07a52;
    --secondary: #2a2a2a;
    --light: #f8f5f2;
    --dark: #1a1a1a;
    --text: #333;
    --text-light: #777;
    --transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--light);
    margin: 0;
    overflow-x: hidden;
}

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

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}

.hero__title-line {
    display: block;
}

.btn--primary {
    margin-top: 20px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    color: #c19a6b;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer__social-link:hover {
    color: #a07a52;
    transform: translateX(5px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.no-js body {
    opacity: 1 !important;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

section {
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

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

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

.btn svg {
    margin-left: 10px;
    transition: var(--transition);
}

.btn:hover svg {
    transform: translateX(5px);
}

.section__title {
    margin-bottom: 80px;
    position: relative;
}

.section__title-sub {
    display: block;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
}

.section__title-main {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--secondary);
}



/* Preloader */
/* CSS для прелоадера */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    overflow: hidden;
}

.preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform-origin: center;
    will-change: transform;
}

.preloader__logo {
    width: 150px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader__logo svg {
    width: 100%;
    height: 100%;
}

.preloader__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    fill: var(--primary);
    stroke: var(--primary);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
        fill-opacity: 1;
    }
}

/* Анимация для фона */
.preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 154, 107, 0.1) 0%, rgba(248, 245, 242, 1) 100%);
    z-index: -1;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Cursor */


/* Header */
/* Header - унифицированная версия */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.logo__text:first-child {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 2px;
}

.logo__text:last-child {
    font-size: 22px;
    color: var(--dark);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
    color: var(--dark);
    transition: var(--transition);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary);
}

.header__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-links .phone {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.contact-links .email {
    font-size: 13px;
    color: var(--gray);
    transition: var(--transition);
}

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

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.burger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    position: relative;
}

.burger__line:nth-child(1) {
    top: 0;
}

.burger__line:nth-child(2) {
    top: 0;
}

.burger__line:nth-child(3) {
    bottom: 0;
}

.burger.active .burger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .header__inner {
        padding: 0 20px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 999;
        padding: 100px 30px 30px;
        display: flex;
        flex-direction: column;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .nav__link {
        font-size: 16px;
        padding: 8px 0;
    }
    
    .header__contacts {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .mobile-contacts {
        margin-top: auto;
        padding-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mobile-contacts .phone {
        font-size: 18px;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 10px;
        display: block;
    }
    
    .mobile-contacts .email {
        font-size: 14px;
        color: var(--gray);
        display: block;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .header.scrolled {
        padding: 8px 0;
    }
    
    .logo__text:first-child {
        font-size: 12px;
    }
    
    .logo__text:last-child {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .header__inner {
        padding: 0 15px;
    }
    
    .nav {
        width: 100%;
        padding: 90px 20px 20px;
    }
}
/* Hero */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    position: relative;
}

section:not(.hero) {
    padding: 80px 0;
}

.hero__slider {
    width: 100%;
    height: 100%;
}

.hero__slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero__slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

.hero__title {
    font-weight: 400;
    margin-bottom: 30px;
}

.hero__title-line {
    font-size: 72px;
    line-height: 1.2;
    overflow: hidden;
}

.hero__title-line span {
    display: inline-block;
    transform: translateY(100%);
    transition: var(--transition);
}

.hero__title-line.aos-animate span {
    transform: translateY(0);
}

.hero__text {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.hero__text.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.hero__scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.hero__scroll-text {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0;
    transition: var(--transition);
}

.hero__scroll-text.aos-animate {
    opacity: 1;
}

.hero__scroll-line {
    width: 1px;
    height: 100px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.hero__social {
    position: absolute;
    right: 40px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 1;
}

.social-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-list__item {
    margin: 10px 0;
    overflow: hidden;
}

.social-list__link {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: translateY(100%);
    opacity: 0;
    transition: var(--transition);
}

.social-list__link.aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* About */
.about {
    padding: 150px 0;
}

.about__inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about__content {
    flex: 1;
}

.about__text {
    margin-bottom: 50px;
}

.about__text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about__features {
    display: flex;
    gap: 30px;
}

.about__feature {
    flex: 1;
}

.about__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.about__feature-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--secondary);
}

.about__feature-text {
    font-size: 14px;
    color: var(--text-light);
}

.about__media {
    flex: 1;
    position: relative;
}

.about__image-main {
    position: relative;
    z-index: 1;
}

.about__image-decor {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    z-index: 0;
}

/* Villas */
.villas {
    padding: 150px 0;
    background-color: var(--light);
}

.villa-card {
    background-color: white;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.villa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.1);
}

.villa-card__media {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.villa-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.villa-card:hover .villa-card__image {
    transform: scale(1.05);
}

.villa-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 15px;
}

.villa-card__content {
    padding: 30px;
}

.villa-card__title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--secondary);
}

.villa-card__text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.villa-card__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.villa-card__meta-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.villa-card__meta-item img {
    width: 16px;
    margin-right: 5px;
}

.villa-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.villa-card__price {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
}

.villa-card__link {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

.villa-card__link svg {
    margin-left: 10px;
    transition: var(--transition);
}

.villa-card__link:hover {
    color: var(--primary);
}

.villa-card__link:hover svg {
    transform: translateX(5px);
}

/* Experience */
.experience {
    padding: 150px 0;
    color: white;
    position: relative;
}

.experience__parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.experience__parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.experience__inner {
    position: relative;
}

.experience__content {
    display: flex;
    gap: 30px;
}

.experience__item {
    flex: 1;
    text-align: center;
}

.experience__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.experience__title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.experience__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    padding: 100px 0 0;
    background-color: var(--secondary);
    color: white;
}

.footer__inner {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer__col {
    flex: 1;
}

.footer__logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
}

.footer__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer__title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--primary);
}

.footer__address {
    font-style: normal;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer__phone,
.footer__email {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__phone:hover,
.footer__email:hover {
    color: var(--primary);
}

.footer__form {
    position: relative;
    margin-bottom: 30px;
}

.footer__form input {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 14px;
}

.footer__form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer__form button {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
}

.footer__form button svg {
    stroke: var(--primary);
}

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

.footer__social-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer__bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__policy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer__policy:hover {
    color: var(--primary);
}

/* Animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .section__title-main {
        font-size: 42px;
    }

    .hero__title-line {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .about__inner {
        flex-direction: column;
        gap: 50px;
    }

    .about__content {
        padding-right: 0;
    }

    .experience__content {
        flex-wrap: wrap;
    }

    .experience__item {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }

    .footer__inner {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer__col {
        flex: 0 0 50%;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: white;
        padding: 100px 30px 30px;
        z-index: 100;
        transition: var(--transition);
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
    }

    .nav__item {
        margin: 0 0 20px;
    }

    .nav__link {
        font-size: 18px;
        color: var(--secondary);
    }

    .burger {
        display: block;
    }

    .header__contacts {
        display: none;
    }

    .hero {
        min-height: calc(100vh - 80px);
        padding: 60px 0;
    }

    .hero__title-line {
        font-size: 48px;
    }

    .hero__social {
        display: none;
    }

    .section__title-main {
        font-size: 36px;
    }

    .experience__item {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .hero__title-line {
        font-size: 36px;
    }

    .section__title-main {
        font-size: 30px;
    }

    .footer__col {
        flex: 0 0 100%;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__policy {
        margin-top: 15px;
    }
}

/* About Page */
.about-page {
    padding-top: var(--header-height);
}

.page-header {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--primary);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    opacity: 0.8;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

.about-story__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-story__content {
    flex: 1;
}

.about-story__image {
    flex: 1;
    position: relative;
}

.about-story__image img {
    width: 100%;
    border-radius: 8px;
}

.about-story__year {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary);
    color: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.3);
}

.about-story__year span:first-child {
    font-size: 32px;
    font-weight: 700;
}

.about-territory {
    background-color: var(--light);
    padding: 100px 0;
}

.about-territory__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-territory__item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.about-territory__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-territory__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
}

.about-territory__map {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-image {
    width: 100%;
}

.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
}

.map-point__dot {
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.map-point__dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(193, 154, 107, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.map-point__label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.map-point:hover .map-point__label {
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
}

.about-team {
    padding: 100px 0;
}

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

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

.team-member__photo {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.team-member__photo img {
    transition: var(--transition);
}

.team-member__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.8);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-member:hover .team-member__overlay {
    transform: translateY(0);
}

.team-member:hover .team-member__photo img {
    transform: scale(1.05);
}

.about-quote {
    background: linear-gradient(rgba(42, 42, 42, 0.9), rgba(42, 42, 42, 0.9)), url('../img/quote-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.quote-block {
    max-width: 800px;
    margin: 0 auto;
}

.quote-block p {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-block footer {
    font-size: 18px;
    color: var(--primary);
}

/* Services Page */
.services-page {
    padding-top: var(--header-height);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
}

.service-card__icon img {
    width: 40px;
    height: 40px;
}

.service-card__title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.service-card__content {
    padding: 0 30px;
    flex-grow: 1;
}

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

.service-features {
    margin: 25px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.service-card .btn {
    margin: 30px auto;
    width: calc(100% - 60px);
    text-align: center;
}

.services-extra {
    background: var(--light);
    padding: 100px 0;
}

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

.extra-service {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.extra-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.extra-service h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.extra-service p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.extra-service__price {
    font-weight: 500;
    color: var(--primary);
}

.services-booking {
    padding: 100px 0;
}

.booking-block {
    background: linear-gradient(rgba(193, 154, 107, 0.9), rgba(193, 154, 107, 0.9)), url('../img/booking-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 12px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.booking-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
}

/* Gallery Page */
.gallery-page {
    padding-top: var(--header-height);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay h3 {
    font-size: 20px;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.zoom-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform: scale(0.8);
    transition: var(--transition);
}

.zoom-icon svg {
    fill: white;
    width: 24px;
    height: 24px;
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
}

.gallery-load-more {
    text-align: center;
    margin: 60px 0;
}

.video-gallery {
    background: var(--light);
    padding: 100px 0;
}

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

.video-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    height: 200px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(193, 154, 107, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-button svg {
    fill: white;
    width: 24px;
    height: 24px;
    margin-left: 5px;
}

/* Contact Page */
.contact-page {
    padding-top: var(--header-height);
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.contact-info__card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-info__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 154, 107, 0.1);
    border-radius: 50%;
}

.contact-info__icon svg {
    fill: var(--primary);
    width: 24px;
    height: 24px;
}

.contact-info__card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-info__card address,
.contact-info__card p {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info__card a {
    color: var(--primary);
    transition: var(--transition);
}

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

.contact-main__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    padding-right: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(193, 154, 107, 0.2);
}

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

.contact-map {
    position: relative;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-hours {
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-hours h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.contact-hours li:last-child {
    border-bottom: none;
}

.contact-faq {
    background: var(--light);
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(193, 154, 107, 0.05);
}

.faq-question svg {
    fill: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p,
.faq-answer ul {
    margin-bottom: 15px;
}

.faq-answer ul {
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.faq-answer li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
    .about-story__inner {
        flex-direction: column;
    }

    .contact-main__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding-right: 0;
    }

    .page-title {
        font-size: 36px;
    }

    .quote-block p {
        font-size: 24px;
    }

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

    .booking-block {
        flex-direction: column;
        text-align: center;
    }

    .booking-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0;
    }

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

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

    .faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }

    .booking-block {
        padding: 40px 30px;
    }

    .booking-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .quote-block p {
        font-size: 20px;
    }

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

    .booking-content h2 {
        font-size: 24px;
    }

    .booking-content p {
        font-size: 16px;
    }

    .contact-hours {
        padding: 20px;
    }
}