:root {
    --bg-color: #FAFAFA;
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --accent: #A68A64;
    --accent-light: #F0EAE1;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    margin: 5px;
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1507652313519-d4e9174996dd?q=80&w=2670&auto=format&fit=crop') no-repeat center center/cover;
    filter: brightness(0.55);
    animation: kenburns 30s infinite alternate ease-in-out;
    will-change: transform;
    z-index: -1;
}

@keyframes kenburns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-content {
    z-index: 2;
    color: white;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
    max-width: 800px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.btn-hero:hover {
    background: white;
    color: var(--text-main);
}

.section-padding {
    padding: 100px 0;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5%;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.srv-card {
    background: white;
    padding: 40px 30px;
    border: 1px solid #eee;
    transition: 0.3s;
    text-align: center;
}

.srv-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.form-wrapper {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    box-shadow: var(--shadow);
    border-radius: 4px;
}

.format-selector {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.f-option {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    cursor: pointer;
    text-align: center;
    transition: 0.2s;
}

.f-option.active {
    border-color: var(--accent);
    background: var(--accent-light);
}

.inp-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

input,
select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fafafa;
    border-radius: 0;
    -webkit-appearance: none;
    font-size: 16px;
}

.pay-btn {
    background: var(--text-main);
    color: white;
    border: none;
    padding: 18px;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: 0px;
        top: 0px;
        height: 100vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .about-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-img {
        height: 350px;
    }

    .inp-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .btn-hero {
        width: 100%;
        text-align: center;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}