/* ============================================================
   SRV Studio One Page — Theme Stylesheet
   ============================================================ */
   
   
   
 /*
Theme Name: SRV Studio One Page
Theme URI: https://srvstudio.com
Author: SRV Studio
Author URI: https://srvstudio.com
Description: A clean, lightweight, premium one-page theme for SRV Studio — a professional content production studio.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: srv-studio
Tags: one-page, dark, modern, portfolio, business
*/
   
   
   
   

/* --- CSS Variables --- */
:root {
  --bg:             hsl(225, 25%, 6%);
  --fg:             hsl(210, 20%, 95%);
  --card:           hsl(225, 20%, 10%);
  --card-fg:        hsl(210, 20%, 95%);
  --primary:        hsl(217, 91%, 60%);
  --primary-fg:     hsl(225, 25%, 6%);
  --secondary:      hsl(225, 15%, 15%);
  --muted:          hsl(215, 15%, 55%);
  --accent:         hsl(270, 70%, 60%);
  --border:         hsl(225, 15%, 18%);
  --surface:        hsl(225, 18%, 12%);
  --radius:         0.75rem;
  --font-body:      'Inter', system-ui, sans-serif;
  --font-display:   'Space Grotesk', system-ui, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.15; }

/* --- Utilities --- */
.srv-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.srv-gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.srv-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; border-radius: var(--radius);
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; border: none; white-space: nowrap;
}
.srv-btn:hover { transform: translateY(-1px); }
.srv-btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-fg); padding: 0.75rem 2rem; font-size: 0.95rem;
}
.srv-btn--primary:hover { box-shadow: 0 0 20px -5px hsla(217, 91%, 60%, 0.4); }
.srv-btn--outline {
  background: transparent; border: 1px solid var(--border); color: var(--fg);
  padding: 0.75rem 2rem; font-size: 0.95rem;
}
.srv-btn--outline:hover { background: var(--secondary); }
.srv-btn--lg { padding: 0.9rem 2.5rem; font-size: 1rem; }
.srv-btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.srv-btn--full { width: 100%; }

/* --- Navbar --- */
.srv-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: hsla(225, 18%, 12%, 0.6); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: background 0.3s;
}
.srv-navbar--scrolled { background: hsla(225, 18%, 12%, 0.95); }
.srv-navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.srv-navbar__logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.srv-navbar__logo span { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.srv-navbar__links { display: flex; align-items: center; gap: 2rem; }
.srv-navbar__links a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.srv-navbar__links a:hover { color: var(--fg); }
.srv-navbar__toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
.srv-navbar__toggle span { display: block; width: 100%; height: 2px; background: var(--fg); position: absolute; left: 0; transition: 0.3s; }
.srv-navbar__toggle span:nth-child(1) { top: 0; }
.srv-navbar__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.srv-navbar__toggle span:nth-child(3) { bottom: 0; }
.srv-navbar__toggle--active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.srv-navbar__toggle--active span:nth-child(2) { opacity: 0; }
.srv-navbar__toggle--active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* --- Glass Card --- */
.srv-glass-card {
  background: hsla(225, 18%, 12%, 0.6); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem 2rem;
}
.srv-glass-card--glow { box-shadow: 0 0 20px -5px hsla(217, 91%, 60%, 0.3); }

/* --- Hero --- */
.srv-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 6rem 0 4rem; overflow: hidden;
}
.srv-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, hsla(225, 25%, 6%, 0.6) 50%, var(--bg) 100%),
              linear-gradient(135deg, hsla(217, 91%, 60%, 0.08), hsla(270, 70%, 60%, 0.08));
}
.srv-hero__content { position: relative; z-index: 2; max-width: 740px; }
.srv-hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: 999px;
  border: 1px solid hsla(217, 91%, 60%, 0.3); background: hsla(217, 91%, 60%, 0.1);
  color: var(--primary); font-size: 0.875rem; margin-bottom: 2rem;
}
.srv-hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.srv-hero__title { font-size: clamp(2.25rem, 5vw, 4.25rem); font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.srv-hero__subtitle { font-size: 1.125rem; color: var(--muted); max-width: 600px; margin-bottom: 2rem; }
.srv-hero__pricing { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.srv-pricing__label { font-size: 0.875rem; color: var(--muted); }
.srv-pricing__label--highlight { color: var(--primary); }
.srv-pricing__value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.srv-pricing__sub { font-size: 0.75rem; color: var(--muted); }
.srv-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.srv-hero__trust { font-size: 0.875rem; color: var(--muted); }

/* --- Sections --- */
.srv-section { padding: 5rem 1rem; }
.srv-section--alt { background: hsla(225, 20%, 10%, 0.5); }
.srv-section__title { font-size: clamp(1.75rem, 3.5vw, 3rem); font-weight: 700; text-align: center; margin-bottom: 3rem; }
.srv-section__title--left { text-align: left; }
.srv-section__note { text-align: center; color: var(--muted); font-size: 0.875rem; margin-top: 2rem; }
.srv-section__note--lg { font-size: 1.125rem; }
.srv-section__cta { text-align: center; margin-top: 1.5rem; }

/* --- Grid --- */
.srv-grid { display: grid; gap: 1.5rem; }
.srv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.srv-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- Cards --- */
.srv-card {
  border: 1px solid var(--border); border-radius: 1rem; padding: 2rem;
  background: var(--card); transition: border-color 0.3s;
}
.srv-card:hover { border-color: hsla(217, 91%, 60%, 0.3); }
.srv-card--highlight {
  border-color: hsla(217, 91%, 60%, 0.4); background: hsla(217, 91%, 60%, 0.05);
  box-shadow: 0 0 20px -5px hsla(217, 91%, 60%, 0.3);
}
.srv-card--compact { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1.5rem; }
.srv-card--feature { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; }
.srv-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.srv-card--compact .srv-card__icon,
.srv-card--feature .srv-card__icon { font-size: 1.75rem; margin-bottom: 0; }
.srv-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.srv-card__text { color: var(--muted); line-height: 1.7; }
.srv-card__label { font-size: 0.875rem; font-weight: 500; text-align: center; }

/* --- Split Layout --- */
.srv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* --- Benefits List --- */
.srv-benefits-list { list-style: none; margin-bottom: 2.5rem; }
.srv-benefits-list li { display: flex; align-items: center; gap: 1rem; font-size: 1.125rem; padding: 0.625rem 0; }
.srv-benefits-list__check {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-fg); display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700;
}

/* --- Stat Card --- */
.srv-stat-card {
  border-radius: 1.5rem; aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, hsla(217, 91%, 60%, 0.1), hsla(270, 70%, 60%, 0.1));
  box-shadow: 0 0 60px -10px hsla(217, 91%, 60%, 0.3);
}
.srv-stat-card__number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.srv-stat-card__label { color: var(--muted); margin-top: 0.5rem; }

/* --- Portfolio Grid --- */
.srv-portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.srv-portfolio-item {
  position: relative; border-radius: 1rem; overflow: hidden; cursor: pointer;
}
.srv-portfolio-item--large { grid-column: span 2; grid-row: span 2; }
.srv-portfolio-item__placeholder {
  aspect-ratio: 1; background: linear-gradient(135deg, var(--secondary), var(--card));
}
.srv-portfolio-item__overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1rem;
  background: linear-gradient(to top, hsla(225, 25%, 6%, 0.8), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.srv-portfolio-item:hover .srv-portfolio-item__overlay { opacity: 1; }
.srv-portfolio-item__overlay span { font-family: var(--font-display); font-weight: 600; font-size: 0.875rem; }

/* --- Testimonials --- */
.srv-testimonial__stars { color: var(--primary); font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 1rem; }
.srv-testimonial__text { color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.srv-testimonial__name { font-weight: 600; font-size: 0.875rem; }
.srv-testimonial__role { font-size: 0.75rem; color: var(--muted); }

/* --- CTA --- */
.srv-cta { text-align: center; max-width: 800px; }
.srv-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 2rem 0; }

/* --- Form --- */
.srv-form { display: flex; flex-direction: column; gap: 1.25rem; }
.srv-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.srv-input {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.75rem 1rem; color: var(--fg); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s; width: 100%;
}
.srv-input:focus { outline: none; border-color: var(--primary); }
.srv-textarea { min-height: 100px; resize: vertical; }

/* --- Contact Info --- */
.srv-contact-info { display: flex; flex-direction: column; gap: 2rem; }
.srv-contact-info__item strong { display: block; margin-bottom: 0.25rem; }
.srv-contact-info__item p { color: var(--muted); }

/* --- Footer --- */
.srv-footer { border-top: 1px solid var(--border); padding: 3rem 1rem; }
.srv-footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.srv-footer__logo { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.srv-footer__logo span { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.srv-footer__tagline { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }
.srv-footer__social { display: flex; gap: 1rem; }
.srv-footer__social a { color: var(--muted); transition: color 0.2s; }
.srv-footer__social a:hover { color: var(--primary); }
.srv-footer__copy { font-size: 0.75rem; color: var(--muted); }

/* --- WhatsApp FAB --- */
.srv-whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s; animation: pulse 2s infinite;
}
.srv-whatsapp-fab:hover { transform: scale(1.1); }

/* --- Scroll Reveal Animation --- */
.srv-animate { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.srv-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .srv-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .srv-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .srv-portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .srv-portfolio-item--large { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 768px) {
  .srv-navbar__links { 
    display: none; flex-direction: column; gap: 0.75rem;
    position: absolute; top: 64px; left: 0; right: 0;
    background: hsla(225, 18%, 12%, 0.95); backdrop-filter: blur(20px);
    border-top: 1px solid var(--border); padding: 1.5rem;
  }
  .srv-navbar__links--open { display: flex; }
  .srv-navbar__toggle { display: block; }

  .srv-grid--3, .srv-grid--4 { grid-template-columns: 1fr 1fr; }
  .srv-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .srv-form__row { grid-template-columns: 1fr; }
  .srv-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-portfolio-item--large { grid-column: span 2; }
  .srv-section { padding: 3.5rem 1rem; }
  .srv-hero { padding: 5rem 0 3rem; }
  .srv-footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .srv-grid--3, .srv-grid--4 { grid-template-columns: 1fr; }
  .srv-hero__pricing { flex-direction: column; }
  .srv-hero__actions { flex-direction: column; }
  .srv-hero__actions .srv-btn { width: 100%; }
}
