:root {
    --primary-color: #00A8C5; /* Teal from logo */
    --secondary-color: #1a365d; /* Dark Blue */
    --accent-color: #d4af37; /* Gold for aesthetics */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-bg: #111;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    line-height: 1;
}

.logo .radiant {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo .life {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-color);
}

.logo .subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

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

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #e0f2f1 0%, #ffffff 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    padding: 15px 40px;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 168, 197, 0.3);
}

.social-proof {
    color: #888;
    font-size: 0.9rem;
}

/* Services */
#services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Offers */
.bg-light { background: var(--light-bg); padding: 80px 0; }

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.offer-tag {
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
}

.offer-card.highlight-card {
    background: var(--primary-color);
    color: var(--white);
}

.offer-card.highlight-card h3,
.offer-card.highlight-card .price {
    color: var(--white);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.offer-card ul {
    list-style: none;
    margin-top: 20px;
}

.offer-card li {
    margin-bottom: 10px;
}

.offer-card li i {
    margin-right: 10px;
}

/* About */
#about { padding: 80px 0; }

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text { flex: 1; }
.about-image { flex: 1; }

.image-placeholder {
    background: #e0f2f1;
    height: 400px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--primary-color);
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Contact */
.bg-dark { background: var(--dark-bg); padding: 80px 0; }
.text-white { color: var(--white); }

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

.contact-details { margin-top: 40px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item a { color: var(--primary-color); text-decoration: none; }

.map-placeholder {
    background: #222;
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.map-placeholder i { font-size: 3rem; margin-bottom: 20px; color: var(--primary-color); }

/* Footer */
footer {
    background: #000;
    color: #666;
    padding: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.footer-links a {
    color: #666;
    margin-left: 20px;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .about-flex { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}
