* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #F5F1E8;
    color: #1a1a1a;
    line-height: 1.6;
}

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

.top-banner {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
}

.banner-link {
    color: white;
    text-decoration: underline;
    margin-left: 5px;
}

.header {
    background-color: #FFFFFF;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo-text {
    letter-spacing: -0.5px;
    font-size: 26px;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #FF6B35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF6B35;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s;
}

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

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #FF6B35;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}

.btn-primary {
    background-color: #FF6B35;
    color: white;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

.btn-secondary {
    background-color: #FF6B35;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
}

.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #9B9B5A 0%, #9B9B5A 50%, #B85C3E 50%, #B85C3E 100%);
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(155, 155, 90, 0.7) 0%, rgba(155, 155, 90, 0.7) 50%, rgba(184, 92, 62, 0.7) 50%, rgba(184, 92, 62, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-title {
    font-size: 140px;
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -3px;
    margin-bottom: 30px;
    font-style: italic;
}

.hero-title-orange {
    color: #FF6B35;
    display: block;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

.hero-title-white {
    color: white;
    display: block;
    margin-top: -115px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

.hero-title .letter {
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-title .letter:hover {
    transform: translateY(-10px) scale(1.1);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: #FFD700;
}

.hero-title-italic {
    font-style: italic;
}

.hero-text {
    position: absolute;
    bottom: 80px;
    right: 80px;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    z-index: 3;
}

.hero-text p {
    color: #1a1a1a;
    font-size: 15px;
    line-height: 1.6;
}

.our-story {
    padding: 120px 0;
    background-color: #F5F1E8;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-label {
    color: #FF6B35;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
}

.section-title:hover {
    color: #FF6B35;
}

.text-muted {
    color: #999;
    font-weight: 400;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

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

.gallery-item-1 {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
}

.gallery-item-2 {
    grid-column: 4 / 7;
    grid-row: 1 / 3;
}

.gallery-item-3 {
    grid-column: 7 / 12;
    grid-row: 1 / 2;
}

.gallery-item-4 {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.gallery-item-5 {
    grid-column: 7 / 10;
    grid-row: 2 / 3;
}

.statistics {
    padding: 100px 0;
    background-color: #F5F1E8;
}

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

.stat-item {
    text-align: left;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 107, 53, 0.05);
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 20px;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 10px;
    display: block;
}

.stat-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B2F1F 0%, #B85C3E 100%);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-left {
    color: white;
}

.services-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
    transition: color 0.3s ease;
}

.services-title:hover {
    color: #FF6B35;
}

.services-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.services-right {
    display: grid;
    gap: 20px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

.service-card-content {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.service-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-link {
    width: 40px;
    height: 40px;
    background-color: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.service-link:hover {
    background-color: #e55a28;
    transform: rotate(45deg);
}

.passion-section {
    padding: 120px 0;
    background-color: #F5F1E8;
}

.passion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.passion-left {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.passion-image-main {
    grid-column: 1 / 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.passion-image-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.passion-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.passion-image-main:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.passion-image-secondary {
    grid-column: 2 / 3;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.passion-image-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.passion-image-secondary img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.passion-image-secondary:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.passion-right {
    padding-left: 40px;
}

.passion-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.passion-title:hover {
    color: #FF6B35;
}

.passion-title em {
    font-style: italic;
    font-weight: 400;
}

.passion-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #666;
}

.faq-section {
    padding: 120px 0;
    background-color: #F5F1E8;
}

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

.faq-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-title:hover {
    color: #FF6B35;
}

.faq-title em {
    font-style: italic;
    font-weight: 400;
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 107, 53, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    color: #FF6B35;
}

.faq-number-title {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.faq-number {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 50px;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

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

.faq-answer.active {
    max-height: 200px;
    padding: 0 0 30px 70px;
}

.faq-answer p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.contact-section {
    padding: 0;
    background-color: #F5F1E8;
}

.contact-background {
    background: linear-gradient(135deg, #D4A574 0%, #D4A574 50%, #C89968 50%, #C89968 100%);
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.contact-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.85) 0%, rgba(212, 165, 116, 0.85) 50%, rgba(200, 153, 104, 0.85) 50%, rgba(200, 153, 104, 0.85) 100%);
}

.contact-form-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.contact-title:hover {
    color: #FF6B35;
}

.contact-title em {
    font-style: italic;
    font-weight: 400;
}

.contact-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.form-group select option:first-child {
    color: #999;
}

.contact-form .btn-primary {
    margin-top: 20px;
    width: fit-content;
    padding: 16px 32px;
    font-size: 14px;
}

.footer {
    background-color: #F5F1E8;
    color: #1a1a1a;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li svg {
    flex-shrink: 0;
    color: #FF6B35;
}

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #FF6B35;
}

.footer-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
}

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

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    position: relative;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.popup-close:hover {
    background-color: #f5f5f5;
    color: #FF6B35;
    transform: rotate(90deg);
}

.popup-body {
    text-align: center;
}

.popup-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.popup-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.popup-body .btn-primary {
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 90px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-content,
    .passion-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-text {
        position: static;
        margin-top: 40px;
        max-width: 100%;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-4,
    .gallery-item-5 {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .passion-left {
        grid-template-columns: 1fr;
    }
    
    .passion-image-secondary {
        margin-top: 0;
    }
}
