/* About Hero Section */
.about-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background: url('/assets/images/cigher.png') center/cover no-repeat;
    margin-top: 80px;
}

/* Introduction Section */
.intro-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

/* Owner Section */
.owner-section {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.owner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.owner-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.owner-image img:hover {
    transform: scale(1.02);
}

.owner-story h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: #c4a47c;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .owner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero {
        height: 40vh;
    }
}

/* Mobile Menu Styles */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    position: fixed;
    top: 20px;
    right: 20px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    right: 0;
}

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

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

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

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        padding: 0;
    }

    .nav-links li {
        margin: 0;
        padding: 0;
    }

    .nav-links li a {
        display: flex;
        align-items: center;
        padding: 15px 25px;
        font-size: 1rem;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li a i {
        margin-right: 12px;
        font-size: 1.1rem;
        color: #c4a47c;
    }

    .mobile-menu {
        display: block;
    }
}