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

:root {
    --primary: #1a1a1a;
    --primary-light: #2d2d2d;
    --accent: #d4af37;
    --text: #1a1a1a;
    --text-light: #666;
    --bg: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #1a1a1a;
    --border: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 20px 0;
}

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

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    font-size: 13px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

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

.hero-content h1 {
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 64px auto 0;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--bg-light);
}

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

.content-text p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 24px;
}

.content-image {
    width: 100%;
    max-width: 1000px;
    margin: 48px auto;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin: 64px 0;
}

.two-column-reverse {
    direction: rtl;
}

.two-column-reverse > * {
    direction: ltr;
}

.two-column-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.two-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.two-column-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.two-column-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Page Header */
.page-header {
    background: var(--bg-dark);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.page-header h2 {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-content {
    padding: 80px 0;
}

.page-content img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 48px;
    display: block;
}

.page-content h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.page-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 300;
    color: var(--primary);
    margin: 48px 0 24px;
    letter-spacing: -0.02em;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--text);
    margin: 32px 0 16px;
}

.page-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 24px;
}

.page-content ul,
.page-content ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* Services Grid */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.services-intro h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.services-intro p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
}

.service-category {
    margin: 80px 0;
}

.service-category h3 {
    font-size: 28px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--accent);
}

.service-category p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--accent);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card .price {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary);
    margin: 16px 0;
    letter-spacing: -0.02em;
}

.service-card .price-period {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.service-card ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.service-card li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Contact */
.contact-section {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.contact-intro h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-intro p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
}

.contact-info {
    background: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
    margin: 48px 0;
    text-align: center;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 32px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--accent);
}

.contact-image {
    width: 100%;
    max-width: 1000px;
    margin: 48px auto;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 64px 0 24px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo img {
    height: 56px;
    width: auto;
    margin-bottom: 24px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: var(--bg);
        width: 100%;
        text-align: left;
        transition: var(--transition);
        box-shadow: var(--shadow-hover);
        padding: 32px 24px;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .two-column-reverse {
        direction: ltr;
    }

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

    .hero-section,
    .content-section,
    .page-content {
        padding: 48px 0;
    }

    .contact-info {
        padding: 32px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
