:root {
    --shopify-green: #008060; /* Darker green for light mode contrast */
    --shopify-light-green: #e6f2ef;
    --bg-color: #f9fafb;
    --card-bg: #ffffff;
    --text-main: #111827;
    --text-muted: #4b5563;
    --glass-border: #e5e7eb;
    --glow: rgba(0, 128, 96, 0.05);
}

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

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

svg {
  fill: var(--shopify-green);
  width: 16px;
  height: 16px;
}
.card svg {
  color: var(--shopify-green);
  width: 40px;
  height: 40px;
}
.form-group svg {
    color: var(--shopify-green);
    width: 10px;
    height: 10px;
    margin-bottom: 5px;
}

/* Background Accents */
.bg-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    pointer-events: none;
}

/* Navbar */
nav {
    padding: 1.2rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    text-decoration: none;
}

.logo span { color: var(--shopify-green); }

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.9rem;
}

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

/* Hero Section */
.hero {
    padding: 80px 8% 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--shopify-light-green);
    border: 1px solid var(--shopify-green);
    padding: 6px 16px;
    border-radius: 100px;
    color: var(--shopify-green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    max-width: 900px;
    color: var(--text-main);
}

.hero h1 mark {
    background: none;
    color: var(--shopify-green);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

/* Video Container */
.video-wrapper {
    width: 100%;
    max-width: 950px;
    aspect-ratio: 16 / 9;
    background: #eee;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    position: relative;
    margin-bottom: 3rem;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Section Global */
.section { padding: 100px 8%; }
.center-title { text-align: center; margin-bottom: 60px; }
.center-title h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-main); }
.center-title div { width: 60px; height: 4px; background: var(--shopify-green); margin: 0 auto; border-radius: 2px; }

/* Cards and Grids */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--shopify-green);
    box-shadow: 0 20px 40px rgba(0, 128, 96, 0.08);
}

.card i {
    font-size: 2.5rem;
    color: var(--shopify-green);
    margin-bottom: 20px;
    display: block;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.portfolio-item:hover {
    border-color: var(--shopify-green);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.portfolio-img {
    width: 100%;
    height: 240px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    font-size: 3rem;
}

.portfolio-info { padding: 25px; }
.portfolio-info h4 { font-size: 1.3rem; margin-bottom: 10px; color: var(--text-main); }
.portfolio-tags { display: flex; gap: 8px; margin-top: 15px; flex-wrap: wrap; }
.tag { font-size: 0.75rem; background: var(--shopify-light-green); color: var(--shopify-green); padding: 5px 14px; border-radius: 50px; font-weight: 600; }

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

.pricing-card {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--shopify-green);
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 128, 96, 0.1);
}

.pricing-price { font-size: 2.8rem; font-weight: 800; color: var(--shopify-green); margin: 20px 0; }
.pricing-list { list-style: none; margin-bottom: 30px; text-align: left; }
.pricing-list li { margin-bottom: 14px; display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text-muted); }
.pricing-list li i { color: var(--shopify-green); font-weight: 800; }

/* Stats */
.stat-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.stat-card h4 { font-size: 2.2rem; color: var(--shopify-green); font-weight: 800; }
.stat-card p { color: var(--text-muted); font-weight: 500; }

/* FAQ */
.faq-item {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 20px;
}
.faq-item h4 { 
    color: var(--text-main); 
    padding: 15px;
}

.faq-item p {
    padding: 0 15px;
}

/* Contact Form */
.form-container {
    background: #fff;
    padding: 45px;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.form-container button[type="submit"] .btn-content{
    display: flex;
    gap: 10px;
    align-items: center;
}

.form-container button[type="submit"] {
    width: 100%;
}

.form-container .message {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: none;
}

.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-size: 0.95rem; font-weight: 600; color: var(--text-main); }
.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: var(--text-main);
    outline: none;
    /* transition: 0.3s; */
    font-family: inherit;
    font-size: 1rem;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80a8,8,0,0,1,11.32-11.32L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus { 
    border-color: var(--shopify-green); 
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 128, 96, 0.05);
}

/* Buttons */
.btn {
    padding: 1.1rem 2.8rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary { 
    background: var(--shopify-green); 
    color: #fff; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 128, 96, 0.25); }


.btn-primary .loader {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    position: absolute;
    opacity: 0;
}

.btn-primary.loading .btn-content {
    visibility: hidden;
}

.btn-primary.loading .loader {
    opacity: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

footer {
    padding: 60px 8%;
    text-align: center;
    background: #fff;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .hero h1 { font-size: 2.2rem; }
    .pricing-card.featured { transform: scale(1); }
    .calendly-inline-widget { height: 900px; }
    .experience-box, .contact-layout { grid-template-columns: 1fr; }
}
