/* ============================================
   UtoWeb - Main Stylesheet
   Modern, Minimalist, Professional
   ============================================ */

/* CSS Variables */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary-color: #64748b;
  --accent-color: #0ea5e9;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-gray: #f1f5f9;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}
h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}
h4 {
  font-size: 1.125rem;
}

p {
  color: var(--text-secondary);
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Spacing */
.section-padding {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: white;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-google {
  background-color: white;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  gap: 0.75rem;
}

.btn-google:hover {
  background-color: var(--bg-light);
  border-color: var(--text-light);
}

.btn-text {
  color: var(--primary-color);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.btn-text:hover {
  text-decoration: underline;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-base);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform var(--transition-slow);
}

.hero-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.browser-mockup {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.browser-header {
  background-color: var(--bg-gray);
  padding: 0.75rem;
  display: flex;
  align-items: center;
}

.browser-dots {
  display: flex;
  gap: 0.5rem;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #cbd5e1;
}

.browser-dots span:first-child {
  background-color: #ef4444;
}
.browser-dots span:nth-child(2) {
  background-color: #f59e0b;
}
.browser-dots span:last-child {
  background-color: #10b981;
}

.browser-content {
  padding: 1.5rem;
}

.mockup-line {
  height: 12px;
  background-color: var(--bg-gray);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.mockup-line.short {
  width: 40%;
}
.mockup-line.medium {
  width: 70%;
}
.mockup-line.long {
  width: 100%;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.mockup-box {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
  border-radius: var(--radius-md);
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at 100% 0%,
    rgba(37, 99, 235, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: -1;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
}

/* Partners Section */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.partner-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.partner-logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-alt {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.partner-initial {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.partner-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.partner-info p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.partner-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition-fast);
}

.partner-card:hover .partner-link {
  gap: 0.5rem;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.cta-content .btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.cta-content .btn-primary:hover {
  background-color: var(--bg-light);
}

/* Page Header */
.page-header {
  padding: 8rem 0 3rem;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.page-header-content {
  max-width: 700px;
}

.page-title {
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
}

/* Services Page */
.services-section .container {
  max-width: 1200px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

.service-card.featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.service-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background-color: var(--primary-color);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-header {
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.static-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.dynamic-icon {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.service-type {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-body {
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

/* Custom Package */
.custom-package {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-top: 2rem;
}

.custom-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.custom-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-text h2 {
  margin-bottom: 0.75rem;
}

.custom-text p {
  margin-bottom: 1rem;
  max-width: 500px;
}

.custom-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.custom-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.custom-features li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: 700;
}

.custom-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 200px;
}

.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.contact-options a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: underline;
}

.contact-options a:hover {
  color: var(--primary-color);
}

/* FAQ Section */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--transition-slow),
    padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

.blog-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.bg-gradient-1 {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
}
.bg-gradient-2 {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
}
.bg-gradient-3 {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}
.bg-gradient-4 {
  background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.blog-category {
  color: var(--primary-color);
  font-weight: 600;
}

.blog-date {
  color: var(--text-light);
}

.blog-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-link:hover {
  gap: 0.5rem;
}

/* Article Section */
.article-section {
  border-top: 1px solid var(--border-color);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.article-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.article-header .blog-category {
  display: inline-block;
  margin-bottom: 1rem;
}

.article-header h1 {
  margin-bottom: 1rem;
}

.article-meta {
  color: var(--text-light);
  font-size: 0.9375rem;
}

.article-body {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.article-body .lead {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.article-body h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.5rem;
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body ul {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.article-body li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-method:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Contact Form */
.contact-form-wrapper {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

/* Auth Status Styles */
.auth-status {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.auth-required {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.auth-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-required p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.auth-hint {
    color: var(--text-light);
    font-size: 0.75rem;
}

.auth-logged-in {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.user-info {
    flex: 1;
}

.user-info p {
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.user-info span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Form disabled state */
.contact-form:has(#submitBtn:disabled) {
    opacity: 0.7;
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
    background-color: var(--bg-gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: inherit;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}



.form-note {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success svg {
  color: #10b981;
  margin-bottom: 1rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--text-primary);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  background: white;
  color: var(--primary-color);
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  color: var(--text-light);
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up.delay-1 {
  animation-delay: 0.1s;
}
.fade-in-up.delay-2 {
  animation-delay: 0.2s;
}
.fade-in-up.delay-3 {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .custom-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .custom-icon {
    margin: 0 auto;
  }

  .custom-features {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .custom-package {
    padding: 2rem 1.5rem;
  }

  .article-content {
    padding: 2rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-card {
    transform: none;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9375rem;
  }

  .contact-method {
    padding: 0.875rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .hero-visual,
  .btn {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .page-header {
    padding: 2rem 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus Visible */
:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background-color: rgba(37, 99, 235, 0.2);
  color: var(--text-primary);
}

/* ============================================
   ADDITIONAL STYLES - Event, Pricing, Deliverables
   ============================================ */

/* ============================================
   EVENT PROMO SECTION - SERVICES PAGE
   ============================================ */
.event-promo-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9f43 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.event-promo-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.05) 10px,
    rgba(255,255,255,0.05) 20px
  );
  animation: promoMove 20s linear infinite;
}

@keyframes promoMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.event-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.event-badge {
  display: inline-block;
  background: #fff;
  color: #ee5a24;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.event-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.event-description {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.event-timer {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.timer-box {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.3);
}

.timer-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
}

.timer-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-price {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  text-align: center;
}

.event-price-label {
  color: #64748b;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.event-original-price {
  font-size: 1.5rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.event-current-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ee5a24;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.event-price-note {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.event-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.event-features li {
  padding: 0.5rem 0;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.event-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
}

.btn-event {
  background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
}

.btn-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 36, 0.5);
}

/* ============================================
   EVENT BANNER - INDEX PAGE
   ============================================ */
.event-banner {
  background: linear-gradient(90deg, #ff6b6b 0%, #ee5a24 50%, #ff9f43 100%);
  color: white;
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
  animation: bannerGlow 3s ease-in-out infinite alternate;
}

@keyframes bannerGlow {
  from { box-shadow: 0 0 20px rgba(238, 90, 36, 0.3); }
  to { box-shadow: 0 0 30px rgba(238, 90, 36, 0.5); }
}

.event-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: bannerShine 3s infinite;
}

@keyframes bannerShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.event-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.event-banner-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
}

.event-banner-icon {
  font-size: 1.5rem;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.event-banner-badge {
  background: white;
  color: #ee5a24;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-banner-btn {
  background: white;
  color: #ee5a24;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.event-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background: #fff5f0;
}

.event-banner-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  z-index: 3;
}

.event-banner-close:hover {
  opacity: 1;
}

/* ============================================
   PRICING STYLES
   ============================================ */
.service-price {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.price-tag {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ============================================
   DELIVERABLES SECTION
   ============================================ */
.deliverables-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  margin-top: 4rem;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.deliverable-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.deliverable-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.deliverable-card.featured {
  border-color: var(--primary-color);
  position: relative;
}

.deliverable-badge {
  position: absolute;
  top: -10px;
  right: 2rem;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.deliverable-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.deliverable-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.deliverable-icon.static {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.deliverable-icon.dynamic {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
}

.deliverable-title-group h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.deliverable-type {
  font-size: 0.875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deliverable-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.deliverable-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.deliverable-list li:last-child {
  border-bottom: none;
}

.deliverable-list li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
}

.deliverable-cta {
  width: 100%;
  text-align: center;
}

.deliverable-note {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.deliverable-note strong {
  color: var(--text-primary);
}

/* ============================================
   SERVICES PREVIEW - INDEX PAGE
   ============================================ */
.services-preview {
  padding: 5rem 0;
  background: var(--bg-light);
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-preview-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.service-preview-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-preview-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, white 0%, rgba(37, 99, 235, 0.05) 100%);
}

.service-preview-badge {
  position: absolute;
  top: -10px;
  right: 2rem;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-preview-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-preview-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-preview-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-preview-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-preview-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-preview-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
}

/* ============================================
   HERO PRICE HIGHLIGHT
   ============================================ */
.hero-price-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1rem;
  border: 2px solid var(--primary-color);
}

.hero-price-highlight .old-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 400;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .event-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .event-timer {
    justify-content: center;
  }
  
  .custom-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .custom-icon {
    margin: 0 auto;
  }
  
  .custom-features {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .event-timer {
    justify-content: center;
  }
  
  .timer-box {
    padding: 0.75rem 1rem;
  }
  
  .timer-number {
    font-size: 1.5rem;
  }
  
  .event-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }
  
  .event-banner-close {
    top: 0.5rem;
    right: 0.5rem;
    transform: none;
  }
  
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
  
  .services-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
  
  .event-container {
    padding: 0 1rem;
  }
  
  .event-price {
    padding: 1.5rem;
  }
  
  .event-current-price {
    font-size: 2.5rem;
  }
}