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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500, #B31415);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a5280e 0%, #7d1010 100%);
}

/* Hero overlay styles */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500, #B31415);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: 2px solid #FFD700;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: #ce0a0d;
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

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

.division {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.division h3 {
    color: #ce0a0d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission, .vision {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission h3, .vision h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #ce0a0d;
    border-left: 4px solid #ce0a0d;
    padding-left: 20px;
    margin: 20px 0;
}

.english-translation {
    font-size: 1rem;
    color: #777;
    margin-top: 10px;
}

/* Guapo House Section */
.guapo-house {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
}

.guapo-house .section-header h2,
.guapo-house h3 {
    color: white;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
}

.advantage-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, #B31415);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.advantage-item h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.brands {
    margin: 60px 0;
    text-align: center;
}

.brand-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.brand-item {
    background: #B31415;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.05);
    background: #8B0000;
    box-shadow: 0 4px 15px rgba(179, 20, 21, 0.3);
}

.goal {
    text-align: center;
    margin-top: 60px;
}

.highlight {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, #B31415);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Trade Section */
.trade {
    background: #f8f9fa;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.scope-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.scope-item:hover {
    transform: translateY(-10px);
}

.scope-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, #B31415);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.scope-item h4 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.4rem;
}

.scope-item ul {
    list-style: none;
    padding-left: 0;
}

.scope-item li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.scope-item li:before {
    content: "→";
    background: linear-gradient(135deg, #FFD700, #FFA500, #B31415);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.trade-vision {
    text-align: center;
    margin-top: 60px;
}

.trade-vision blockquote {
    font-size: 1.6rem;
    text-align: center;
    border: none;
    padding: 0;
}

/* Partnerships Section */
.partnerships {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    color: white;
}

.partnerships .section-header h2 {
    color: white;
}

.partner-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.partner-type {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.partner-type:hover {
    transform: translateY(-10px);
}

.partner-type i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, #B31415);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.partner-type h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

/* Philosophy Section */
.philosophy {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 20%, #FFD700 40%, #FFA500 60%, #B31415 80%, #000000 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.philosophy h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.philosophy-quote {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 40px 0;
    border: none;
    padding: 0;
    color: white;
}

.philosophy-description {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500, #B31415);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 30px;
}

.locations h3 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.8rem;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #333;
    text-align: center;
    transition: transform 0.3s ease;
}

.location:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #FFD700, #FFA500, #B31415);
    color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

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

.footer-divisions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-divisions span {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .advantage-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 25px;
    }
    
    .advantage-item {
        padding: 25px;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-divisions {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .philosophy h2 {
        font-size: 2.2rem;
    }
    
    .philosophy-quote {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    .advantage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 15px;
    }
    
    .advantage-item {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .scope-grid,
    .partner-types {
        grid-template-columns: 1fr;
    }
    
    .brand-list {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}
