:root {
    --primary: #d6336c;      /* Vibrant Pink/Burgundy */
    --primary-light: #f06595;
    --primary-dark: #a61e4d;
    --secondary: #212529;    /* Dark Text */
    --text: #495057;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --gold: #fcc419;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: -5px;
}

.logo .subtitle {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-outline {
    border: 2px solid var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--primary) !important;
}

.btn-outline:hover {
    background: var(--primary);
    color: white !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1603450917686-2a62886f68c3?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: var(--gold);
    color: var(--secondary);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-text h2 {
    font-size: 56px;
    color: white;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Glassmorphism Card */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.glass h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list i {
    color: var(--gold);
    font-size: 20px;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text);
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    padding: 50px;
    border-radius: 24px;
    background: linear-gradient(145deg, #2b2b2b, #1a1a1a);
    color: white;
}

.contact-info h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-info > p {
    color: #aaa;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.info-item h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 18px;
}

.info-item p, .info-item a {
    color: #ccc;
    font-size: 16px;
}

.info-item a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
    height: 100%;
    min-height: 400px;
}

footer {
    background: var(--secondary);
    color: white;
    padding: 30px 0;
}

/* Animations */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h2 {
        font-size: 42px;
    }
    
    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
}
