/* Home Page Styles - Borderless Modern Design */

/* Hero Banner Section */
.hero-banner {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #d4af37;
    font-style: italic;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Brand Partners Section */
.brand-partners {
    padding: 5rem 0;
    background: #ffffff;
    overflow: hidden;
}

.brand-partners h2 {
    text-align: center;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 600;
}

.brands-carousel {
    overflow: hidden;
    white-space: nowrap;
}

.brands-track {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    align-items: center;
    gap: 4rem;
}

.brand-logo {
    height: 80px;
    width: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Overview Section */
.overview {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.overview h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.section-intro {
    font-size: 1.4rem;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #ffffff;
}

.services h2 {
    text-align: center;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.service-card {
    background: transparent;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #d4af37;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #d4af37;
}

.service-card h3 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-link {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.1rem;
}

.service-link:hover {
    color: #b8941f;
    text-decoration: underline;
}

/* Philosophy Section */
.philosophy {
    padding: 5rem 0;
    background: #f8f9fa;
}

.philosophy h2 {
    text-align: center;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 600;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.philosophy-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: transparent;
    transition: all 0.3s ease;
}

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

.philosophy-item h3 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.philosophy-item p {
    color: #666666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.cta-section h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #d4af37;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.cta-section .btn-primary {
    background: #d4af37;
    color: #000000;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Georgia", "Times New Roman", serif;
}

.cta-section .btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-section .btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Georgia", "Times New Roman", serif;
}

.cta-section .btn-secondary:hover {
    background: #d4af37;
    color: #000000;
}

/* Animations */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .brand-logo {
        height: 60px;
        margin: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .philosophy-item {
        padding: 2rem 1.5rem;
    }
}