/*
Theme Name: Outshine Studios
Theme URI: https://outshinestudios.in
Author: Outshine Studios
Author URI: https://outshinestudios.in
Description: A premium, mobile-first WordPress theme for Outshine Studios — built for Elementor. Designed to convert visitors into clients for local restaurants and cafes.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: outshine-studios
Tags: one-page, elementor, business, marketing, mobile-first, restaurant, cafe
*/

/* =========================================
   CSS VARIABLES
========================================= */
:root {
  --os-primary: #F28500;
  --os-primary-dark: #d97400;
  --os-primary-light: #ffA030;
  --os-accent: #F28500;
  --os-dark: #111111;
  --os-dark-2: #f5f5f5;
  --os-dark-3: #eeeeee;
  --os-mid: #555555;
  --os-text: #1a1a1a;
  --os-text-muted: #666666;
  --os-white: #ffffff;
  --os-bg: #ffffff;
  --os-bg-alt: #f8f8f8;
  --os-success: #06D6A0;
  --os-border: rgba(0,0,0,0.08);
  --os-card-bg: #ffffff;
  --os-gradient: linear-gradient(135deg, #F28500 0%, #ffA030 100%);
  --os-gradient-dark: linear-gradient(135deg, #111111 0%, #222222 100%);
  --os-shadow: 0 20px 60px rgba(242,133,0,0.15);
  --os-shadow-card: 0 4px 30px rgba(0,0,0,0.08);
  --os-radius: 16px;
  --os-radius-sm: 8px;
  --os-radius-lg: 24px;
  --os-radius-xl: 40px;
  --os-font-heading: 'Poppins', sans-serif;
  --os-font-body: 'Poppins', sans-serif;
  --os-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --os-max-width: 1200px;
}

/* =========================================
   RESET & BASE
========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--os-font-body);
  background-color: var(--os-bg);
  color: var(--os-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.admin-bar {
  padding-top: 32px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--os-primary);
  text-decoration: none;
  transition: var(--os-transition);
}

a:hover { color: var(--os-primary-light); }

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--os-font-heading);
  line-height: 1.15;
  color: var(--os-dark);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 6vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }

p {
  color: var(--os-text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

/* =========================================
   UTILITY CLASSES
========================================= */
.container {
  width: 100%;
  max-width: var(--os-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 60px; } }

.section-pad {
  padding: 80px 0;
}

@media (min-width: 768px) { .section-pad { padding: 100px 0; } }
@media (min-width: 1200px) { .section-pad { padding: 130px 0; } }

.text-center { text-align: center; }
.text-gradient {
  background: var(--os-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--os-primary);
  background: rgba(255,107,43,0.12);
  border: 1px solid rgba(255,107,43,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: var(--os-font-heading);
  font-weight: 700;
  color: var(--os-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--os-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--os-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--os-transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--os-gradient);
  color: var(--os-white);
  box-shadow: 0 8px 30px rgba(255,107,43,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,43,0.5);
  color: var(--os-white);
}

.btn-outline {
  background: transparent;
  color: var(--os-dark);
  border: 1.5px solid rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.4);
  color: var(--os-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--os-white);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
  color: var(--os-white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* =========================================
   HEADER / NAVIGATION
========================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--os-transition);
  padding: 16px 0;
}

#site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--os-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.site-logo .logo-text {
  font-family: var(--os-font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--os-dark);
}

.site-logo .logo-text span { color: var(--os-primary); }

.nav-menu {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .nav-menu { display: flex; }
}

.nav-menu a {
  color: var(--os-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--os-transition);
}

.nav-menu a:hover {
  color: var(--os-dark);
  background: rgba(0,0,0,0.05);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

/* Mobile Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1010;
}

@media (min-width: 768px) { .menu-toggle { display: none; } }

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--os-dark);
  border-radius: 2px;
  transition: var(--os-transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu a {
  font-family: var(--os-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--os-dark);
  transition: var(--os-transition);
}

.mobile-menu a:hover { color: var(--os-primary); }

.mobile-menu .mobile-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

/* =========================================
   HERO SECTION
========================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(242,133,0,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,209,102,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.hero-content {}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--os-primary);
  background: rgba(255,107,43,0.1);
  border: 1px solid rgba(255,107,43,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--os-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-family: var(--os-font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--os-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--os-border);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-logos {
  display: flex;
  gap: -8px;
}

.trust-logos img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  margin-left: -8px;
}

.trust-logos img:first-child { margin-left: 0; }

.trust-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--os-dark);
}

.trust-text span {
  font-size: 0.78rem;
  color: var(--os-text-muted);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-phone-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.hero-phone-mockup img {
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.06);
  width: 100%;
}

.hero-float-card {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--os-border);
  border-radius: var(--os-radius);
  padding: 12px 16px;
  box-shadow: var(--os-shadow-card);
  backdrop-filter: blur(10px);
}

.hero-float-card.card-1 {
  top: 10%;
  left: -15%;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-2 {
  bottom: 15%;
  right: -15%;
  animation: float 3s ease-in-out infinite 1.5s;
}

.float-stat {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--os-font-heading);
  color: var(--os-primary);
  line-height: 1;
}

.float-label {
  font-size: 0.72rem;
  color: var(--os-text-muted);
  margin-top: 2px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

/* =========================================
   CLIENTS / TRUST STRIP
========================================= */
#clients-strip {
  padding: 40px 0;
  border-top: 1px solid var(--os-border);
  border-bottom: 1px solid var(--os-border);
  background: #f5f5f5;
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--os-text-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.clients-scroll-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: scrollClients 20s linear infinite;
  width: max-content;
}

.clients-scroll-track img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.7;
  filter: grayscale(30%);
  transition: var(--os-transition);
  flex-shrink: 0;
}

.clients-scroll-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   PAIN POINTS / PROBLEM SECTION
========================================= */
#problem {
  background: #ffffff;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.problem-col {
  border-radius: var(--os-radius-lg);
  padding: 36px;
  border: 1px solid var(--os-border);
}

.problem-col.without {
  background: #f8f8f8;
}

.problem-col.with-us {
  background: linear-gradient(135deg, rgba(242,133,0,0.07), rgba(242,133,0,0.02));
  border-color: rgba(242,133,0,0.25);
}

.col-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--os-border);
}

.col-heading .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.without .col-heading .icon { background: rgba(255,60,60,0.15); }
.with-us .col-heading .icon { background: rgba(255,107,43,0.15); }

.problem-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--os-text-muted);
  line-height: 1.5;
}

.problem-item .item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.with-us .problem-item { color: #1a1a1a; }

/* =========================================
   SERVICES
========================================= */
#services {
  background: #f5f5f5;
}

.services-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--os-card-bg);
  border: 1px solid var(--os-border);
  border-radius: var(--os-radius-lg);
  padding: 36px 32px;
  transition: var(--os-transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--os-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,43,0.3);
  box-shadow: 0 24px 60px rgba(242,133,0,0.12);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,107,43,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: var(--os-transition);
}

.service-card:hover .service-icon {
  background: rgba(255,107,43,0.2);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--os-text-muted);
}

.service-feature::before {
  content: '→';
  color: var(--os-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.services-cta {
  text-align: center;
  margin-top: 56px;
}

.services-note {
  font-size: 0.85rem;
  color: var(--os-text-muted);
  margin-top: 16px;
}

/* =========================================
   RESULTS / PORTFOLIO
========================================= */
#results {
  background: #ffffff;
}

.results-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) { .results-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .results-grid { grid-template-columns: repeat(3, 1fr); } }

.result-card {
  background: #ffffff;
  border: 1px solid var(--os-border);
  border-radius: var(--os-radius-lg);
  overflow: hidden;
  transition: var(--os-transition);
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,43,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

.result-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--os-border);
}

.result-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.result-client-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--os-dark);
  margin-bottom: 4px;
}

.result-client-type {
  font-size: 0.78rem;
  color: var(--os-text-muted);
}

.result-card-body {
  padding: 24px;
}

.result-card-body p {
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.result-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--os-text);
  font-weight: 500;
}

.result-card-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.result-card-images img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  transition: var(--os-transition);
}

.result-card-images.cols-2 { grid-template-columns: repeat(2, 1fr); }
.result-card-images.cols-1 { grid-template-columns: 1fr; }

.result-card:hover .result-card-images img { transform: scale(1.03); }

.portfolio-cta {
  text-align: center;
  margin-top: 56px;
}

/* =========================================
   TESTIMONIALS
========================================= */
#testimonials {
  background: #f5f5f5;
  overflow: hidden;
}

.testimonials-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.testimonials-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.testimonials-logos img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--os-border);
  transition: var(--os-transition);
}

.testimonials-logos img:hover {
  border-color: var(--os-primary);
  transform: scale(1.1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--os-border);
  border-radius: var(--os-radius-lg);
  padding: 32px;
  transition: var(--os-transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 6rem;
  color: rgba(242,133,0,0.12);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(255,107,43,0.25);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.star { color: var(--os-accent); }

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--os-text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,107,43,0.3);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--os-dark);
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.78rem;
  color: var(--os-text-muted);
}

/* =========================================
   CONTACT / CTA SECTION
========================================= */
#contact {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(242,133,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.contact-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 992px) {
  .contact-wrapper { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.contact-info {}

.contact-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--os-text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--os-card-bg);
  border: 1px solid var(--os-border);
  border-radius: var(--os-radius);
  transition: var(--os-transition);
  text-decoration: none;
}

.contact-method:hover {
  border-color: rgba(255,107,43,0.3);
  background: rgba(242,133,0,0.04);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,107,43,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--os-dark);
  margin-bottom: 2px;
}

.contact-method-text span {
  font-size: 0.8rem;
  color: var(--os-text-muted);
}

.contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Contact Form */
.contact-form-wrap {
  background: #f8f8f8;
  border: 1px solid var(--os-border);
  border-radius: var(--os-radius-xl);
  padding: 40px 32px;
}

.form-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--os-text-muted);
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.form-group {
  grid-column: span 1;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--os-text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-input,
.form-textarea {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--os-radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--os-dark);
  transition: var(--os-transition);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(0,0,0,0.3);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--os-primary);
  background: rgba(242,133,0,0.04);
  box-shadow: 0 0 0 3px rgba(255,107,43,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* =========================================
   FOOTER
========================================= */
#site-footer {
  background: #f0f0f0;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; } }

.footer-brand {}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo .logo-text {
  font-family: var(--os-font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--os-dark);
}

.footer-logo .logo-text span { color: var(--os-primary); }

.footer-desc {
  font-size: 0.88rem;
  color: var(--os-text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--os-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--os-text-muted);
  font-size: 1rem;
  transition: var(--os-transition);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--os-primary);
  color: var(--os-primary);
  background: rgba(255,107,43,0.08);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--os-dark);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--os-text-muted);
  transition: var(--os-transition);
}

.footer-links a:hover {
  color: var(--os-primary);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--os-border);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--os-text-muted);
}

.footer-copyright a {
  color: var(--os-primary);
}

/* =========================================
   STICKY WHATSAPP
========================================= */
.sticky-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--os-transition);
  text-decoration: none;
  font-size: 1.4rem;
}

.sticky-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}

/* =========================================
   ELEMENTOR COMPATIBILITY
========================================= */
.elementor-section {
  margin-bottom: 0 !important;
}

.elementor .elementor-widget-wrap {
  align-content: start;
}

.e-con, .e-container {
  max-width: var(--os-max-width) !important;
}

/* =========================================
   WORDPRESS DEFAULTS
========================================= */
.wp-block-image { margin: 0; }
.wp-caption { max-width: 100%; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* =========================================
   SMOOTH REVEAL ANIMATIONS
========================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   MOBILE RESPONSIVE PATCHES
========================================= */
@media (max-width: 479px) {
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  .contact-form-wrap { padding: 28px 20px; }
  .service-card { padding: 28px 24px; }
  .hero-float-card { display: none; }
}

/* =========================================
   CONTENT SHOWCASE COLLAGE SECTION
========================================= */
#content-showcase {
  background-color: var(--os-bg);
}

.showcase-collage {
  width: 100%;
  border-radius: var(--os-radius-lg);
  overflow: hidden;
  box-shadow: var(--os-shadow);
  border: 1px solid var(--os-border);
}

.showcase-collage-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =========================================
   GLOBAL WHITE BACKGROUND ENFORCEMENT
========================================= */
html,
body,
.site,
.site-content,
#page,
#content {
  background-color: #ffffff !important;
}

/* =========================================
   FONT ENFORCEMENT — MONTSERRAT + POPPINS
========================================= */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.contact-title,
.service-card h3,
.result-client-name {
  font-family: var(--os-font-heading) !important;
}

body,
p,
span,
li,
a,
label,
input,
textarea,
button {
  font-family: var(--os-font-body) !important;
}

/* =========================================
   ELEMENTOR COMPATIBILITY IMPROVEMENTS
========================================= */

/* Allow Elementor to override our layout on Elementor pages */
.elementor-page #content,
.elementor-page .site-content,
.elementor-page main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Prevent theme from interfering with Elementor sections */
.elementor-section,
.elementor-container,
.elementor-widget-wrap {
  font-family: var(--os-font-body) !important;
}

/* Make Elementor headings use Poppins */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--os-font-heading) !important;
}

/* Elementor text widgets */
.elementor-widget-text-editor p,
.elementor-widget-text-editor span {
  font-family: var(--os-font-body) !important;
}

/* Override Elementor background if white is needed */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--os-max-width) !important;
}

/* Ensure Elementor buttons match brand */
.elementor-button {
  font-family: var(--os-font-body) !important;
  font-weight: 600 !important;
}

/* Fix Elementor full-width pages — no extra padding from theme */
body.page-template-elementor-fullwidth #site-header + * {
  margin-top: 0 !important;
}

/* Remove default WordPress content padding that can shift Elementor layouts */
.elementor-page .entry-content,
.elementor-page .post-content {
  padding: 0 !important;
  margin: 0 !important;
}

/* Elementor column backgrounds */
.elementor-column > .elementor-column-wrap {
  background-color: transparent;
}

/* Make sure our CSS variables are accessible within Elementor */
.elementor-widget-container {
  --os-primary: #F28500;
  --os-dark: #111111;
  --os-white: #ffffff;
  --os-font-heading: 'Poppins', sans-serif;
  --os-font-body: 'Poppins', sans-serif;
}
