/* --- CSS Variables & Resets --- */
:root {
    --bg-color: #ffffff; /* Clean white */
    --bg-lighter: #f8fafc; /* Soft off-white for sections */
    --text-main: #1e293b; /* Dark slate */
    --text-muted: #64748b; /* Medium slate */
    --accent-color: #0ea5e9; /* Ocean blue */
    --accent-hover: #0284c7;
    --action-color: #f59e0b; /* Sunny orange/yellow */
    --action-hover: #d97706;
    --card-bg: #ffffff;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Utilities --- */
.accent-color {
    color: var(--accent-color);
}

.text-glow {
    /* Removed text glow for light theme, keeping class empty to avoid HTML edits */
}

.glass-panel {
    background: var(--card-bg);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 5%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

#navbar.scrolled .nav-links a {
    color: var(--text-main);
}
#navbar.scrolled .logo {
    color: var(--text-main);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white; /* White on hero initially */
    transition: var(--transition);
}

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

.nav-links a {
    color: white; /* White on hero initially */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color) !important;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* --- Buttons --- */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px; /* Softer, rounder buttons */
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-btn.small {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: var(--action-color);
    color: white;
}

.cta-btn.small:hover {
    background: var(--action-hover);
}

.primary-btn {
    background: var(--action-color);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.primary-btn:hover {
    background: var(--action-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.secondary-btn {
    background: white;
    color: var(--text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.secondary-btn:hover {
    background: var(--bg-lighter);
    color: var(--accent-hover);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('hero-bright.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.6)); /* Lighter overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: white; /* Ensure text pops against hero */
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.service-features i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.featured-service {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 10;
}

/* --- Pricing Section --- */
.bg-light-alt {
    background: #f1f5f9;
}

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

.pricing-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: white;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-card h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-right: 2px;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 30px;
}

.pricing-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}

.featured-pricing {
    border: 2px solid var(--accent-color);
    padding: 50px 30px;
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.2);
}

/* --- Why Us Section --- */
.dark-section {
    background: var(--bg-lighter);
    max-width: 100%;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-us-text > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #e0f2fe; /* Light blue bg */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.benefit-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.glass-image-wrapper {
    padding: 10px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--card-shadow);
}

/* --- Contact Section --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    overflow: hidden;
    background: white;
}

.contact-info {
    padding: 50px;
    background: var(--bg-lighter);
    border-right: 1px solid #e2e8f0;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.contact-item i {
    color: var(--accent-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.full-width {
    width: 100%;
}

/* --- Footer --- */
footer {
    border-top: 1px solid #e2e8f0;
    padding: 40px 5%;
    text-align: center;
    background: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-content .logo {
    color: var(--text-main);
}

.footer-content p {
    color: var(--text-muted);
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .why-us-container { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .contact-info { border-right: none; border-bottom: 1px solid #e2e8f0; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .section { padding: 60px 5%; }
}
