:root {
    --gold: #d4af37;
    --midnight: #0a0c10;
    --slate: #1e293b;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
}

/* Typography */
.playfair { font-family: 'Playfair Display', serif; }
.inter { font-family: 'Inter', sans-serif; }

/* Hero Section */
.hero-premium {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1541518763669-27fef04b14ea?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.25rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-title i {
    color: var(--gold) !important;
    font-style: italic;
    font-weight: 900 !important;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

/* Feature Cards */
.features-section {
    padding: 100px 0;
    background: #fff;
}

.feature-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    background: white;
}

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

.feature-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.1);
}

.feature-body {
    padding: 2rem;
}

.feature-tag {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--midnight);
}

/* Section Titles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-title {
    font-size: 3rem;
    margin-top: 10px;
}

/* Buttons */
.btn-premium {
    background: var(--gold);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    display: inline-block;
}

.btn-premium:hover {
    background: transparent;
    color: var(--gold);
    text-decoration: none;
}

.btn-premium-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 50px;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 2rem; }
}

/* Contact Info Icons Fix */
.about-contact {
    display: flex;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px; /* Force fixed size to maintain circle shape */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon.phone {
    background: var(--gold);
}

.contact-icon.instagram {
    background: #e1306c;
}

@media (max-width: 576px) {
    .about-contact {
        flex-direction: column;
        gap: 20px;
    }
}
