/* Reset & Variables */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #FF6B35;   /* Vibrant Orange */
    --secondary: #004E89; /* Deep Blue */
    --accent: #F7C59F;    /* Soft Peach */
    --bg-dark: #1A1A1D;
    --text-primary: #f2f2f2;
    --text-muted: #c2c2c2;
    --glass-bg: rgba(26, 26, 29, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-glow: rgba(255, 107, 53, 0.2);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo { font-family: 'Outfit', sans-serif; font-weight: 800; }

a { text-decoration: none; color: inherit; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Glassmorphism Panel Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Nav */
.navbar {
    position: fixed; width: 100%; top: 0; left: 0; z-index: 1000;
    background: rgba(26, 26, 29, 0.85); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0; transition: background 0.3s;
}

.nav-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.8rem; color: #fff; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--primary), #e55a29);
    color: #fff; padding: 0.8rem 1.8rem; border-radius: 50px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 4px 15px var(--glass-glow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block; border: none; cursor: pointer;
}
.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.secondary-cta {
    background: linear-gradient(135deg, var(--secondary), #003a6b);
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.3);
}

/* Hero Section */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; }

/* Dynamic animated gradient background instead of static hero-bg just in case image fails */
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background: linear-gradient(45deg, var(--bg-dark), #111, var(--secondary), #111);
    background-size: 400% 400%; animation: gradientBg 15s ease infinite;
}

@keyframes gradientBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%;
}

.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-text h1 span { color: var(--primary); background: -webkit-linear-gradient(#FF6B35, #ff9b57); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }

.hero-actions { display: flex; flex-direction: column; gap: 1rem; }
.address-text { font-size: 0.9rem; color: #888; font-style: italic; }

.hero-image-wrapper { position: relative; width: 100%; height: 500px; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.hero-img { width: 100%; height: 100%; object-fit: cover; }

.floating-element { animation: float 6s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* Sections */
.section { padding: 6rem 0; position: relative; z-index: 10; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.section-header h2 { font-size: 2.8rem; color: #fff; margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.service-card { text-align: center; border-top: 4px solid var(--primary); display: flex; flex-direction: column; height: 100%; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px var(--glass-glow); }
.service-icon { margin-bottom: 1.5rem; color: var(--primary); }
.service-icon svg { width: 50px; height: 50px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.service-img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; margin-bottom: 1rem; }
.service-card p { flex-grow: 1; color: var(--text-muted); }

/* Why Us */
.why-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.why-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.benefit-list li { display: flex; align-items: center; font-size: 1.1rem; }
.benefit-list .check { color: var(--primary); font-weight: bold; margin-right: 1rem; font-size: 1.2rem; }

.why-stats { display: flex; flex-direction: column; gap: 2rem; text-align: center; border-left: 4px solid var(--secondary); justify-content: center;}
.stat h3 { font-size: 3rem; color: var(--primary); margin-bottom: 0.5rem; }
.stat p { font-size: 1.2rem; color: #fff; font-weight: 500; }

/* CTA Banner */
.cta-banner .container-center { text-align: center; max-width: 800px; padding: 4rem 2rem; background: linear-gradient(135deg, rgba(0, 78, 137, 0.4), var(--glass-bg)); border-left: 4px solid var(--primary); }
.cta-banner h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-banner p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }

/* Footer */
.footer { background: #111; padding: 4rem 0 2rem; border-top: 1px solid #333; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-info h4 { font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.footer-info p { color: var(--text-muted); }
.footer-contact p { color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-legal { text-align: center; padding-top: 2rem; border-top: 1px solid #333; color: #666; font-size: 0.9rem; grid-column: 1 / -1; }

/* Animations on Scroll */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.visible { opacity: 1; transform: translate(0); }

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .why-container { grid-template-columns: 1fr; }
    .hero-text { text-align: center; }
    .hero-actions { align-items: center; }
    .hero-text h1 { font-size: 2.8rem; }
    .nav-links a:not(.cta-button) { display: none; }
}

@media (max-width: 768px) {
    .hero { padding-top: 100px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-image-wrapper { height: 350px; }
    .section-header h2 { font-size: 2.2rem; }
}
