/* Custom Font */
@font-face {
    font-family: 'Montserrat';
    src: url('/font/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h4 {
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1.75rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a5a5a;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.35);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: #b8860b;
    border: 2px solid #b8860b;
    font-weight: 500;
}

.btn-secondary:hover {
    background: #b8860b;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.btn-card {
    background: #fafafa;
    color: #4a4a4a;
    border: 1px solid #e8e8e8;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: #b8860b;
    color: #ffffff;
    border-color: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(254, 254, 254, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #b8860b;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.025em;
}

.nav a.active {
    color: #b8860b;
    font-weight: 600;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b8860b, #daa520);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

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

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.burger-menu:hover {
    background: rgba(184, 134, 11, 0.1);
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background: #4a4a4a;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Mobile Menu Styles */
#nav-menu.active {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
}

#nav-menu.active li {
    margin: 1rem 0;
    text-align: center;
}

#nav-menu.active a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#nav-menu.active a:hover {
    background: rgba(184, 134, 11, 0.1);
    color: #b8860b;
}

/* Hero Section */
.hero {
    padding: 6rem 0 7rem;
    background: linear-gradient(135deg, #fafafa 0%, #fefefe 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 3rem;
}

.hero h1 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.05;
}

.hero p {
    font-size: 1.25rem;
    color: #6b6b6b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features {
    list-style: none;
    margin-bottom: 3.5rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    color: #4a4a4a;
}

.hero-features .icon {
    margin-right: 1.25rem;
    font-size: 1.75rem;
    color: #b8860b;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-image {
    position: relative;
    transform: translateZ(0);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 15px 35px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover img {
    transform: translateY(-5px) scale(1.02);
}

.hero-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
    letter-spacing: 0.025em;
    backdrop-filter: blur(10px);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #fefefe;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: translateY(-3px) scale(1.01);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 2.5rem;
    color: #6b6b6b;
    line-height: 1.7;
}

.about-services {
    list-style: none;
    margin-bottom: 3.5rem;
}

.about-services li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    color: #5a5a5a;
    font-weight: 400;
}

.about-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: 600;
    font-size: 1.1em;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #b8860b;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.about-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Divider Section */
.divider {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #fefefe 100%);
    text-align: center;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.divider h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Offer Section */
.offer {
    padding: 6rem 0;
    background: #fefefe;
    position: relative;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.offer h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.offer-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 1px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b8860b, #daa520);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.offer-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #b8860b;
    transition: transform 0.3s ease;
}

.offer-card:hover .card-icon {
    transform: scale(1.1);
}

.offer-card h3 {
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 600;
}

.offer-card p {
    color: #6b6b6b;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.offer-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.offer-card li {
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    color: #5a5a5a;
    font-weight: 400;
    line-height: 1.5;
}

.offer-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: 600;
    font-size: 1.2em;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #fefefe 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 1px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #ffffff;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

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

.gallery-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Contact Form Section */
.contact-form {
    padding: 6rem 0;
    background: #fefefe;
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form-element {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 1rem;
    letter-spacing: 0.025em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9a9a;
    font-weight: 400;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    accent-color: #b8860b;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
    color: #6b6b6b;
    font-size: 0.95rem;
}

/* Contact Details Section */
.contact-details {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-details {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #fefefe 100%);
    position: relative;
}

.contact-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.contact-details h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.06),
        0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    font-size: 2.8rem;
    margin-right: 2rem;
    color: #b8860b;
    min-width: 3rem;
    text-align: center;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-text p {
    color: #6b6b6b;
    line-height: 1.5;
    font-weight: 400;
}

/* Legal Section */
.legal {
    padding: 6rem 0;
    background: #fefefe;
    position: relative;
}

.legal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.legal h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.legal-content p {
    margin-bottom: 2rem;
    color: #6b6b6b;
    line-height: 1.7;
    font-weight: 400;
    font-size: 1.1rem;
}

.legal-content p strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 5rem 0 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-column {
    padding: 0 1rem;
}

.footer-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-column h4 {
    margin-bottom: 2rem;
    color: #b8860b;
    font-weight: 600;
    letter-spacing: 0.025em;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #b8860b, #daa520);
    border-radius: 1px;
}

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

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    position: relative;
}

.footer-column a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #b8860b;
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-logo h3 {
    color: #b8860b;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-logo + p {
    color: #b8b8b8;
    line-height: 1.7;
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b8860b;
}

.footer-copyright {
    color: #777;
    font-size: 0.9rem;
    font-weight: 400;
}

/* About Us Page Styles */
.about-hero {
    padding: 7rem 0 8rem;
    background: linear-gradient(135deg, #fafafa 0%, #fefefe 100%);
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-centered {
    position: relative;
    z-index: 1;
}

.hero-centered h1 {
    font-size: 4rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.05;
}

.hero-centered p {
    font-size: 1.25rem;
    color: #6b6b6b;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.accent-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #b8860b, #daa520);
    margin: 0 auto;
    border-radius: 2px;
}

.intro-block {
    padding: 6rem 0;
    background: #fefefe;
    position: relative;
}

.intro-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem 3.5rem;
    border-radius: 20px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

.why-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #fefefe 100%);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.why-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 1px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b8860b, #daa520);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card .card-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #b8860b;
    transition: transform 0.3s ease;
}

.why-card:hover .card-icon {
    transform: scale(1.1);
}

.why-card h3 {
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 600;
}

.why-card p {
    color: #6b6b6b;
    line-height: 1.6;
    font-weight: 400;
}

.cta-section {
    padding: 6rem 0;
    background: #fefefe;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 4rem 3.5rem;
    border-radius: 20px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.25rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
}

.cta-card .btn {
    margin: 0;
}

.compliance-note {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #fefefe 100%);
}

.compliance-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.06),
        0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.compliance-text p {
    margin-bottom: 0.75rem;
    color: #6b6b6b;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.compliance-text p strong {
    color: #1a1a1a;
    font-weight: 600;
}

.compliance-text p:last-child {
    margin-bottom: 0;
}

/* Legal Pages Styles */
.page-title {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #fafafa 0%, #fefefe 100%);
    text-align: center;
    position: relative;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.page-title h1 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 3.5rem;
}

.legal-content-section {
    padding: 4rem 0 6rem;
    background: #fefefe;
    position: relative;
}

.legal-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 40%, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.06),
        0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.content-wrapper h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 3rem 0 1.5rem 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.content-wrapper h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    color: #5a5a5a;
    line-height: 1.7;
    font-weight: 400;
    font-size: 1.1rem;
}

.content-wrapper p strong {
    color: #1a1a1a;
    font-weight: 600;
}

.content-wrapper ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-wrapper li {
    margin-bottom: 0.75rem;
    color: #5a5a5a;
    line-height: 1.6;
    position: relative;
    padding-left: 1rem;
}

.content-wrapper li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: #b8860b;
    font-weight: 600;
    font-size: 1.2em;
}

.content-wrapper li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.content-wrapper em {
    font-style: italic;
    color: #8a8a8a;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Burger Menu for Mobile */
    .burger-menu {
        display: flex;
    }

    #nav-menu {
        display: none;
    }

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-buttons,
    .about-buttons {
        flex-direction: column;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav ul {
        gap: 1rem;
    }
}

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

    .hero {
        padding: 3rem 0;
    }

    .about,
    .offer,
    .gallery,
    .contact-form,
    .contact-details,
    .legal {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-features li {
        font-size: 1rem;
    }

    .offer-card {
        padding: 2rem;
    }
}
