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

:root {
    --primary: #1a1a1a;
    --secondary: #f5f5f5;
    --accent: #a83a3a;
    --accent-dark: #6b1a1a;
    --text-dark: #2a2a2a;
    --text-light: #6a6a6a;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    background: var(--primary);
    color: white;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 40px;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-item a:hover {
    color: var(--accent);
}

.top-bar-icon {
    color: var(--accent);
    font-size: 16px;
}

.top-bar-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 52px;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    height: 80px;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 45px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

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

nav a:hover {
    color: var(--accent);
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1003;
    background: none;
    border: none;
    padding: 0;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
nav.mobile {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 998;
    width: 100%;
}

nav.mobile.active {
    display: flex;
}

nav.mobile a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: block;
    transition: color 0.3s ease;
}

nav.mobile a:hover {
    color: var(--accent);
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: calc(52px + 70px);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ===== VIDEO HERO ===== */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* ===== HERO CONTENT ===== */
.hero-content {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    max-width: 55%;
    color: white;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
    font-weight: 800;
    letter-spacing: -1px;
    animation: slideInLeft 0.8s ease-out;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
    animation: slideInLeft 0.8s ease-out 0.15s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 16px 45px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 58, 58, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 45px;
    border: 2px solid white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 40px;
    background: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    height: 450px;
    background: linear-gradient(135deg, #e8e8e8 0%, #d9d9d9 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-content h2 span {
    color: var(--accent);
}

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

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    padding: 30px;
    background: var(--secondary);
    border-radius: 4px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 120px 40px;
    background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

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

.service-card {
    background: white;
    padding: 50px 35px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transition: left 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.service-card:hover::before {
    left: 0;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 4px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    font-size: 13px;
    color: var(--text-light);
    line-height: 2;
}

.service-features li {
    list-style: none;
    padding-left: 4px;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: 120px 40px;
    background: var(--secondary);
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item:nth-child(7),
.portfolio-item:nth-child(8) {
    grid-column: auto;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d0d0d0 0%, #b0b0b0 100%);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 120px 40px;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: var(--secondary);
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-header:hover {
    background: #efefef;
}

.faq-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: var(--accent-dark);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

.faq-text {
    padding: 0 30px 30px 30px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 120px 40px;
    background: var(--white);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: var(--secondary);
    padding: 40px;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a2a2a 100%);
    color: white;
}

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

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-content h2 span {
    color: var(--accent);
}

.contact-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.9;
}

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

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.contact-item-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contact-item-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

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

.btn-submit {
    background: var(--accent);
    color: var(--primary);
    padding: 15px 40px;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    font-size: 14px;
}

.btn-submit:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 40px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 70%;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .portfolio-item:nth-child(3) {
        grid-column: auto;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-bar-left {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        padding: 0 4px;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
    }

    .top-bar-left {
        flex-direction: row;
        gap: 12px;
        width: auto;
        font-size: 11px;
    }

    .top-bar-item {
        font-size: 11px;
        white-space: nowrap;
    }

    .top-bar-social {
        gap: 8px;
        flex-shrink: 0;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    header {
        top: 52px;
        padding: 0.6rem 0;
    }

    .header-container {
        padding: 0 4px;
        position: relative;
        height: auto;
        min-height: 50px;
    }

    .logo img {
        height: 40px;
    }

    .hamburger {
        display: flex !important;
        z-index: 1003;
    }

    nav:not(.mobile) {
        display: none !important;
    }

    nav.mobile {
        display: none;
        top: calc(52px + 50px);
    }

    .hero-content {
        left: 4px;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slide-arrow.prev {
        left: 4px;
    }

    .slide-arrow.next {
        right: 20px;
    }

    .about-container {
        padding: 0 4px;
    }

    .services-container {
        padding: 0 4px;
    }

    .portfolio-container {
        padding: 0 4px;
    }

    .faq-container {
        padding: 0 4px;
    }

    .testimonials-container {
        padding: 0 4px;
    }

    .contact-container {
        padding: 0 4px;
    }

    .footer-container {
        padding: 0 4px;
    }

    .section-header h2,
    .about-content h2 {
        font-size: 40px;
    }

    .about {
        padding: 80px 4px;
    }

    .services {
        padding: 100px 4px;
    }

    .portfolio {
        padding: 100px 4px;
    }

    .faq {
        padding: 100px 4px;
    }

    .testimonials {
        padding: 100px 4px;
    }

    .contact {
        padding: 100px 4px;
    }

    footer {
        padding: 40px 4px 20px;
    }

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

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-header h3 {
        font-size: 16px;
    }
}