/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

/* --- CSS Variables --- */
:root {
    --bg-color: #f8f9fa;
    --primary-text: #212529;
    --secondary-text: #6c757d;
    --accent-color-start: #007bff;
    --accent-color-end: #0056b3;
    --card-bg: rgba(255, 255, 255, 0.6);
    --card-border: rgba(0, 0, 0, 0.1);
    --form-field-bg: #ffffff;
    --whatsapp-green: #25D366;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* --- General & Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-color); color: var(--primary-text); font-family: var(--font-body); line-height: 1.7; overflow-x: hidden; }

/* --- Background Canvas --- */
#liquid-background { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }

/* --- Header & Navigation --- */
header { position: fixed; width: 100%; padding: 20px 5%; z-index: 10; background: linear-gradient(180deg, rgba(248, 249, 250, 0.7) 0%, rgba(248, 249, 250, 0) 100%); backdrop-filter: blur(5px); }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }

/* Updated Logo Styles */
.logo {
    text-decoration: none;
    color: var(--primary-text);
}
.logo svg {
    height: 32px; /* Control logo size */
    width: auto;
}
.logo svg path {
    stroke: var(--primary-text);
    fill: none;
}
.logo svg text {
    font-family: var(--font-heading);
    font-weight: 700;
    fill: var(--primary-text);
}

/* --- Buttons --- */
.cta-button { display: inline-block; background-image: linear-gradient(45deg, var(--accent-color-start), var(--accent-color-end)); color: #ffffff; padding: 12px 28px; border-radius: 50px; text-decoration: none; font-weight: 500; transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; cursor: pointer; }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2); }
.nav-button { padding: 8px 20px; font-size: 0.9rem; }

/* --- Hero Section --- */
#hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 5%; }
.hero-content { max-width: 800px; }
h1 { font-family: var(--font-heading); font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 1.2; color: var(--primary-text); margin-bottom: 1rem; }
.hero-content p { font-size: 1.1rem; color: var(--secondary-text); max-width: 650px; margin: 0 auto 2rem; }

/* --- Content Sections --- */
.content-section { padding: 100px 5%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.section-title { text-align: center; font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 3rem; }

/* --- About Section --- */
.about-text { text-align: center; max-width: 800px; margin: 0 auto 3rem; color: var(--secondary-text); font-size: 1.1rem; }

/* --- Services Section --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-card { 
    background: white; 
    border: 1px solid var(--card-border); 
    border-radius: 20px; 
    padding: 2rem; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    /* The new additions to center content */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.service-card img { height: 64px; margin-bottom: 1rem; }
.service-card h3 { font-family: var(--font-heading); margin-bottom: 0.5rem; font-size: 1.25rem; }
.support-text { font-size: 0.9rem; color: var(--secondary-text); }

/* --- Portfolio Section --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.portfolio-item { position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.portfolio-item:hover { transform: scale(1.05); }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); padding: 2rem 1.5rem 1.5rem; color: white; }
.portfolio-overlay h3 { font-family: var(--font-heading); font-size: 1.5rem; }

/* --- Pricing Section --- */
.pricing-card { max-width: 550px; margin: 0 auto; background: white; border: 1px solid var(--card-border); border-radius: 15px; padding: 3rem; text-align: center; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.pricing-card h3 { font-size: 1.8rem; font-family: var(--font-heading); }
.price { font-size: 3.5rem; font-weight: 700; margin: 1rem 0; font-family: var(--font-heading); }
.price span { font-size: 1rem; color: var(--secondary-text); font-weight: 400; }
.features-list { list-style: none; margin: 2rem 0; text-align: left; display: inline-block; padding-left: 0; }
.features-list li { margin-bottom: 0.75rem; color: var(--secondary-text); }
.renewal-note { font-weight: 500; margin-top: 1.5rem; }

/* --- Inquiry Form --- */
.inquiry-form { max-width: 700px; margin: 2rem auto 0; }
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-group input { width: 100%; padding: 12px 15px; border-radius: 8px; border: 1px solid #ccc; background-color: var(--form-field-bg); font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-group input:focus { border-color: var(--accent-color-start); box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2); outline: none; }
.inquiry-form .cta-button { width: 100%; padding: 15px; font-size: 1.1rem; }

/* --- WhatsApp Button --- */
.whatsapp-button { position: fixed; bottom: 25px; left: 25px; width: 55px; height: 55px; background-color: var(--whatsapp-green); border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.2); display: flex; justify-content: center; align-items: center; z-index: 1000; transition: transform 0.3s ease; }
.whatsapp-button:hover { transform: scale(1.1); }
.whatsapp-button img { width: 30px; height: 30px; }

/* --- Footer --- */
footer { text-align: center; padding: 20px 5%; color: var(--secondary-text); font-size: 0.9rem; }

/* --- Scroll Animation --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .logo svg { height: 28px; }
    h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; }
    .content-section { padding: 60px 5%; }
    .section-title { font-size: 2rem; margin-bottom: 2rem; }
    .pricing-card { padding: 2rem; }
}