@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Inter:wght@300;400;500;700&display=swap');

:root {
    --hmm-primary: #0891b2;
    --hmm-secondary: #0e7490;
    --hmm-accent: #a855f7;
    --hmm-background: #ecfeff;
    --hmm-text: #164e63;
    --hmm-muted: #67e8f9;
    --hmm-dark-bg: #0d0d0d;
    --hmm-light-text: #f0f0f0;
    --hmm-border-radius: 8px;
    --hmm-transition-speed: 0.3s;
}

/* Base Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--hmm-text);
    background-color: var(--hmm-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--hmm-accent);
    color: var(--hmm-light-text);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--hmm-secondary);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 400;
}

p {
    margin-bottom: 1em;
    font-size: 1.1rem;
    font-weight: 300;
}

a {
    color: var(--hmm-primary);
    text-decoration: none;
    transition: color var(--hmm-transition-speed) ease;
}

a:hover {
    color: var(--hmm-accent);
}

/* Utility Classes */
.el-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.el-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.el-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.el-mb-4 {
    margin-bottom: 2rem;
}

/* Buttons */
.el-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--hmm-border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: all var(--hmm-transition-speed) ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.el-btn-primary {
    background-color: var(--hmm-primary);
    color: var(--hmm-light-text);
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4);
}

.el-btn-primary:hover {
    background-color: var(--hmm-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.6);
}

.el-btn-secondary {
    background-color: var(--hmm-accent);
    color: var(--hmm-light-text);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.el-btn-secondary:hover {
    background-color: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
}

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

.el-btn-outline:hover {
    background-color: var(--hmm-primary);
    color: var(--hmm-light-text);
    transform: translateY(-2px);
}

/* Gradient Shimmer CTA */
.el-btn-shimmer {
    background: linear-gradient(90deg, var(--hmm-primary) 0%, var(--hmm-accent) 50%, var(--hmm-primary) 100%);
    background-size: 200% 100%;
    color: var(--hmm-light-text);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
    animation: el-shimmer-bg 3s linear infinite;
}

.el-btn-shimmer:hover {
    color: var(--hmm-light-text);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.6);
}

@keyframes el-shimmer-bg {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Header & Navigation */
.el-header {
    background-color: var(--hmm-dark-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.el-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hmm-muted);
}

.el-logo:hover {
    color: var(--hmm-primary);
}

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

.el-nav-desktop li {
    margin-left: 2rem;
}

.el-nav-desktop a {
    color: var(--hmm-light-text);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.el-nav-desktop a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--hmm-primary);
    transition: width var(--hmm-transition-speed) ease;
}

.el-nav-desktop a:hover::after {
    width: 100%;
}

.el-hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
}

.el-hamburger .el-bar {
    width: 100%;
    height: 3px;
    background-color: var(--hmm-light-text);
    transition: all var(--hmm-transition-speed) ease;
}

.el-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transform: translateX(100%);
    transition: transform var(--hmm-transition-speed) ease-in-out;
    list-style: none;
}

.el-nav-mobile.el-open {
    transform: translateX(0);
}

.el-nav-mobile li {
    margin: 1.5rem 0;
}

.el-nav-mobile a {
    color: var(--hmm-muted);
    font-size: 1.8rem;
    font-weight: 700;
}

.el-nav-mobile a:hover {
    color: var(--hmm-primary);
}

.el-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: var(--hmm-muted);
    cursor: pointer;
    transition: color var(--hmm-transition-speed) ease;
}

.el-close-btn:hover {
    color: var(--hmm-primary);
}

/* Hero Section */
.el-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--hmm-light-text);
    overflow: hidden;
}

.el-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.6);
}

.el-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.7) 0%, rgba(14, 116, 144, 0.7) 100%);
    z-index: -1;
}

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

.el-hero h1 {
    color: var(--hmm-light-text);
    margin-bottom: 0.75rem;
    font-size: 4.5rem;
}

.el-hero .el-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Spacing & Backgrounds */
.el-section {
    padding: 6rem 0;
    position: relative;
}

.el-section:nth-of-type(even) {
    background-color: var(--hmm-background);
}

.el-section:nth-of-type(odd) {
    background-color: #f0fdfa;
}

.el-section-dark {
    background-color: var(--hmm-dark-bg);
    color: var(--hmm-light-text);
}
.el-section-dark h2, .el-section-dark h3, .el-section-dark h4 {
    color: var(--hmm-muted);
}
.el-section-dark a {
    color: var(--hmm-primary);
}

/* Cards */
.el-card {
    background-color: #fff;
    border-radius: var(--hmm-border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform var(--hmm-transition-speed) ease, box-shadow var(--hmm-transition-speed) ease;
    overflow: hidden;
}

.el-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.el-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--hmm-border-radius);
    margin-bottom: 1.5rem;
}

.el-card h3 {
    color: var(--hmm-secondary);
    margin-bottom: 0.75rem;
}

.el-card p {
    font-size: 1rem;
    flex-grow: 1;
}

/* Form Styling */
.el-form-group {
    margin-bottom: 1.5rem;
}

.el-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--hmm-secondary);
}

.el-form-group input[type="text"],
.el-form-group input[type="email"],
.el-form-group input[type="tel"],
.el-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--hmm-border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--hmm-text);
    background-color: #f8fafc;
    transition: border-color var(--hmm-transition-speed) ease, box-shadow var(--hmm-transition-speed) ease;
}

.el-form-group input[type="text"]:focus,
.el-form-group input[type="email"]:focus,
.el-form-group input[type="tel"]:focus,
.el-form-group textarea:focus {
    outline: none;
    border-color: var(--hmm-primary);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.2);
}

.el-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.el-form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--hmm-border-radius);
    font-weight: 500;
    display: none;
}

.el-form-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.el-form-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Trust Elements */
.el-trust-item {
    display: inline-flex;
    align-items: center;
    background-color: var(--hmm-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    color: var(--hmm-secondary);
    font-size: 0.95rem;
    margin: 0.5rem;
}

.el-trust-item svg {
    margin-right: 0.75rem;
    color: var(--hmm-primary);
}

/* FAQ Accordion */
.el-faq-item {
    background-color: #fff;
    border-radius: var(--hmm-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.el-faq-q {
    padding: 1.5rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--hmm-secondary);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.el-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--hmm-primary);
    transition: transform var(--hmm-transition-speed) ease;
}

.el-faq-item.active .el-faq-q::after {
    content: '-';
    transform: rotate(180deg);
}

.el-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--hmm-transition-speed) ease-out;
    padding: 0 2rem;
}

.el-faq-item.active .el-faq-a {
    max-height: 500px; /* Sufficiently large value */
    padding-bottom: 1.5rem;
}

.el-faq-a p {
    font-size: 1rem;
    color: var(--hmm-text);
}

/* Testimonials */
.el-testimonial-card {
    background-color: var(--hmm-dark-bg);
    color: var(--hmm-light-text);
    padding: 2.5rem;
    border-radius: var(--hmm-border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.el-testimonial-card blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--hmm-muted);
}

.el-testimonial-card cite {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--hmm-primary);
}

.el-testimonial-card cite span {
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.el-footer {
    background-color: var(--hmm-dark-bg);
    color: var(--hmm-light-text);
    padding: 3rem 0;
    font-size: 0.95rem;
}

.el-footer .el-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.el-footer h4 {
    color: var(--hmm-muted);
    margin-bottom: 1rem;
}

.el-footer ul {
    list-style: none;
}

.el-footer ul li {
    margin-bottom: 0.75rem;
}

.el-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--hmm-transition-speed) ease;
}

.el-footer a:hover {
    color: var(--hmm-primary);
}

.el-footer-bottom {
    background-color: #080808;
    padding: 1rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.el-footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Animations */
.el-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.el-animate.el-animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 3.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .el-nav-desktop {
        display: none;
    }
    .el-hamburger {
        display: flex;
    }
    .el-hero h1 {
        font-size: 3.5rem;
    }
    .el-hero .el-hero-subtitle {
        font-size: 1.3rem;
    }
    .el-section {
        padding: 4rem 0;
    }
    .el-footer .el-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1rem;
    }
    .el-hero h1 {
        font-size: 2.8rem;
    }
    .el-hero .el-hero-subtitle {
        font-size: 1.1rem;
    }
    .el-section {
        padding: 3rem 0;
    }
    .el-card {
        padding: 1.5rem;
    }
    .el-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .el-footer .el-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .el-footer h4 {
        margin-top: 1.5rem;
    }
    .el-footer ul li {
        display: inline-block;
        margin: 0 0.5rem;
    }
    .el-hamburger {
        margin-left: auto;
    }
    .el-nav-desktop .el-btn {
        display: none;
    }

}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    .el-hero h1 {
        font-size: 2.2rem;
    }
    .el-hero .el-hero-subtitle {
        font-size: 1rem;
    }
    .el-container {
        padding: 0 1rem;
    }
    .el-grid {
        grid-template-columns: 1fr;
    }
    .el-testimonial-card {
        padding: 1.5rem;
    }
    .el-testimonial-card blockquote {
        font-size: 1.1rem;
    }
    .el-faq-q {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    .el-faq-a {
        padding: 0 1.5rem;
    }
    .el-trust-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        margin: 0.3rem;
    }
}


/* === Quality polish === */
img { max-width: 100%; height: auto; display: block; }