/* ==========================================================================
   FLOATIN PRETTY BALLOONS - LUXURY "DARK & ROSE GOLD" STYLESHEET
   ========================================================================== */

   @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&family=Inter:wght@300;400;500&display=swap');

   :root {
       /* Color Palette - Premium Dark & Rose Gold */
       --clr-bg: #0a0a0c;          /* Deep Onyx Background */
       --clr-surface: #131316;     /* Elevated Surface */
       --clr-primary: #d59f9a;     /* Rose Gold Accent */
       --clr-primary-hover: #e5b2ad;
       --clr-secondary: #e0bfb8;   /* Champagne Accent */
       --clr-text-main: #f0f0f2;   /* Off-white text */
       --clr-text-muted: #8b8b93;  /* Sophisticated Gray text */
       
       /* Glassmorphism Tokens */
       --glass-bg: rgba(25, 25, 30, 0.4);
       --glass-border: rgba(213, 159, 154, 0.15); /* Rose Gold Tinted Border */
       --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
       
       /* Typography */
       --font-heading: 'Outfit', sans-serif;
       --font-body: 'Inter', sans-serif;
       
       /* Transitions */
       --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
       --transition-slow: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
   }
   
   /* ==========================================================================
      RESET & BASE
      ========================================================================== */
   *, *::before, *::after {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
   }
   
   html {
       scroll-behavior: smooth;
       font-size: 16px;
   }
   
   body {
       font-family: var(--font-body);
       background-color: var(--clr-bg);
       color: var(--clr-text-main);
       line-height: 1.7;
       overflow-x: hidden;
       -webkit-font-smoothing: antialiased;
   }
   
   h1, h2, h3, h4, h5, h6 {
       font-family: var(--font-heading);
       line-height: 1.2;
       font-weight: 300;
       color: var(--clr-text-main);
   }
   
   a {
       text-decoration: none;
       color: inherit;
       transition: var(--transition-smooth);
   }
   
   img {
       max-width: 100%;
       display: block;
   }
   
   /* ==========================================================================
      UTILITIES
      ========================================================================== */
   .container {
       width: 100%;
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 2rem;
   }
   
   .glass-panel {
       background: var(--glass-bg);
       backdrop-filter: blur(25px);
       -webkit-backdrop-filter: blur(25px);
       border: 1px solid var(--glass-border);
       box-shadow: var(--glass-shadow);
       border-radius: 24px;
   }
   
   .rose-gradient-text {
       background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary), #ffffff);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       display: inline-block;
       font-weight: 400;
   }
   
   .btn {
       display: inline-block;
       padding: 1.1rem 2.8rem;
       border-radius: 4px;
       font-weight: 400;
       font-size: 0.85rem;
       letter-spacing: 0.15em;
       text-transform: uppercase;
       cursor: pointer;
       border: none;
       transition: var(--transition-smooth);
       text-align: center;
       position: relative;
       overflow: hidden;
   }
   
   .btn-primary {
       background-color: var(--clr-primary);
       color: var(--clr-bg);
       box-shadow: 0 10px 30px rgba(213, 159, 154, 0.2);
   }
   
   .btn-primary:hover {
       background-color: var(--clr-primary-hover);
       transform: translateY(-2px);
       box-shadow: 0 15px 40px rgba(213, 159, 154, 0.4);
   }
   
   .btn-glass {
       background: rgba(255, 255, 255, 0.05);
       border: 1px solid var(--glass-border);
       backdrop-filter: blur(10px);
       color: var(--clr-primary);
   }
   
   .btn-glass:hover {
       background: rgba(255, 255, 255, 0.1);
       transform: translateY(-2px);
       border-color: var(--clr-primary);
   }
   
   /* ==========================================================================
      NAVIGATION
      ========================================================================== */
   .navbar {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       z-index: 1000;
       transition: var(--transition-smooth);
       border-bottom: 1px solid transparent;
   }
   
   .navbar.scrolled {
       background: rgba(10, 10, 12, 0.85);
       backdrop-filter: blur(20px);
       border-bottom: 1px solid rgba(255,255,255,0.05);
   }
   
   .nav-container {
       display: flex;
       justify-content: space-between;
       align-items: center;
       height: 100px;
   }
   
   .nav-brand {
       display: flex;
       align-items: center;
       gap: 1.2rem;
   }
   
   .nav-brand img {
       height: 65px;
       width: auto;
       filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
   }
   
   .nav-brand span {
       font-family: var(--font-heading);
       font-weight: 300;
       font-size: 1.4rem;
       letter-spacing: 0.2em;
       text-transform: uppercase;
       color: var(--clr-text-main);
   }
   
   .nav-links {
       display: flex;
       gap: 3.5rem;
       align-items: center;
   }
   
   .nav-links a.nav-link {
       font-size: 0.75rem;
       font-weight: 400;
       color: var(--clr-text-muted);
       text-transform: uppercase;
       letter-spacing: 0.15em;
       position: relative;
   }
   
   .nav-links a.nav-link::after {
       content: '';
       position: absolute;
       bottom: -6px;
       left: 0;
       width: 0;
       height: 1px;
       background: var(--clr-primary);
       transition: var(--transition-smooth);
   }
   
   .nav-links a.nav-link:hover {
       color: var(--clr-primary);
   }
   
   .nav-links a.nav-link:hover::after {
       width: 100%;
   }
   
   /* ==========================================================================
      HERO SECTION
      ========================================================================== */
   .hero {
       position: relative;
       min-height: 100vh;
       display: flex;
       align-items: center;
       padding-top: 100px;
       background-image: linear-gradient(rgba(10, 10, 12, 0.6), rgba(10, 10, 12, 0.95)), url('hero.png');
       background-size: cover;
       background-position: center;
       background-attachment: fixed;
   }
   
   .hero::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       height: 200px;
       background: linear-gradient(to top, var(--clr-bg), transparent);
   }
   
   .hero-content {
       text-align: center;
       max-width: 900px;
       margin: 0 auto;
       position: relative;
       z-index: 10;
       animation: fadeInUp 1.5s ease-out forwards;
   }
   
   .hero h1 {
       font-size: clamp(3.5rem, 6vw, 6rem);
       font-weight: 200;
       letter-spacing: -0.01em;
       margin-bottom: 1.5rem;
   }
   
   .hero h1 span {
       display: block;
       margin-top: 0.2rem;
   }
   
   .hero p {
       font-size: 1.15rem;
       color: var(--clr-text-muted);
       margin-bottom: 4rem;
       font-weight: 300;
       max-width: 650px;
       margin-left: auto;
       margin-right: auto;
       letter-spacing: 0.05em;
   }
   
   .hero-buttons {
       display: flex;
       gap: 2rem;
       justify-content: center;
   }
   
   /* ==========================================================================
      SERVICES SECTION
      ========================================================================== */
   .services {
       padding: 10rem 0;
       background: var(--clr-bg);
       position: relative;
   }
   
   .section-header {
       text-align: center;
       margin-bottom: 6rem;
   }
   
   .section-header h2 {
       font-size: 2.8rem;
       font-weight: 300;
       margin-bottom: 1rem;
       letter-spacing: 0.05em;
       text-transform: uppercase;
   }
   
   .section-header .divider {
       width: 80px;
       height: 1px;
       background: var(--clr-primary);
       margin: 0 auto;
   }
   
   .services-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
       gap: 4rem;
   }
   
   .service-card {
       text-align: center;
       cursor: pointer;
   }
   
   .service-image {
       width: 100%;
       height: 400px;
       border-radius: 12px;
       overflow: hidden;
       margin-bottom: 2.5rem;
       box-shadow: 0 20px 40px rgba(0,0,0,0.4);
       position: relative;
       border: 1px solid rgba(255,255,255,0.05);
   }
   
   .service-image img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
       filter: brightness(0.85);
   }
   
   .service-card:hover .service-image img {
       transform: scale(1.05);
       filter: brightness(1.1);
   }
   
   .service-card h3 {
       font-size: 1.6rem;
       margin-bottom: 0.8rem;
       font-weight: 400;
       letter-spacing: 0.05em;
   }
   
   .service-card p {
       color: var(--clr-text-muted);
       font-size: 1rem;
       font-weight: 300;
       line-height: 1.8;
   }
   
   .price-tag {
       color: var(--clr-primary);
       font-weight: 400;
       font-size: 0.9rem;
       letter-spacing: 0.1em;
       text-transform: uppercase;
       margin-bottom: 1rem;
       display: block;
   }
   
   /* ==========================================================================
      PROCESS SECTION (ONBOARDING)
      ========================================================================== */
   .process {
       padding: 10rem 0;
       background: var(--clr-surface);
       border-top: 1px solid rgba(255,255,255,0.02);
       border-bottom: 1px solid rgba(255,255,255,0.02);
   }
   
   .process-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
       gap: 3rem;
       margin-top: 6rem;
   }
   
   .process-step {
       text-align: center;
       padding: 3.5rem 2.5rem;
       position: relative;
       background: transparent;
       border: 1px solid rgba(255,255,255,0.03);
       border-radius: 12px;
       transition: var(--transition-smooth);
   }
   
   .process-step:hover {
       background: rgba(255,255,255,0.02);
       border-color: rgba(213, 159, 154, 0.2);
       transform: translateY(-5px);
   }
   
   .step-number {
       width: 50px;
       height: 50px;
       background: transparent;
       color: var(--clr-primary);
       border: 1px solid var(--clr-primary);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.2rem;
       font-family: var(--font-heading);
       font-weight: 300;
       margin: 0 auto 2rem;
   }
   
   .process-step h3 {
       margin-bottom: 1.2rem;
       font-size: 1.3rem;
       letter-spacing: 0.1em;
       text-transform: uppercase;
   }
   
   .process-step p {
       color: var(--clr-text-muted);
       font-size: 0.9rem;
       line-height: 1.8;
   }
   
   /* ==========================================================================
      LEAD CAPTURE SECTION (GHL INTEGRATION)
      ========================================================================== */
   .contact {
       padding: 12rem 0;
       background: var(--clr-bg);
       position: relative;
       overflow: hidden;
   }
   
   .contact::before {
       content: '';
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       width: 800px;
       height: 800px;
       background: radial-gradient(circle, rgba(213, 159, 154, 0.08) 0%, transparent 70%);
       z-index: 0;
   }
   
   .contact-box {
       max-width: 850px;
       margin: 0 auto;
       padding: 5rem 4rem;
       position: relative;
       z-index: 1;
       text-align: center;
   }
   
   .contact-box h2 {
       font-size: 3rem;
       margin-bottom: 1rem;
       font-weight: 200;
   }
   
   .contact-box > p {
       color: var(--clr-text-muted);
       margin-bottom: 4rem;
       font-size: 1.1rem;
   }
   
   .form-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 2rem;
       text-align: left;
       margin-bottom: 2.5rem;
   }
   
   .form-group {
       display: flex;
       flex-direction: column;
       gap: 0.8rem;
   }
   
   .form-group.full-width {
       grid-column: 1 / -1;
   }
   
   .form-group label {
       font-size: 0.75rem;
       font-weight: 500;
       color: var(--clr-text-main);
       text-transform: uppercase;
       letter-spacing: 0.15em;
   }
   
   .form-group input, .form-group select, .form-group textarea {
       width: 100%;
       padding: 1.2rem;
       background: rgba(255, 255, 255, 0.03);
       border: 1px solid rgba(255, 255, 255, 0.1);
       border-radius: 4px;
       font-family: var(--font-body);
       font-size: 1rem;
       color: var(--clr-text-main);
       transition: var(--transition-smooth);
       outline: none;
   }
   
   .form-group select option {
       background: var(--clr-surface);
       color: var(--clr-text-main);
   }
   
   .form-group textarea {
       resize: vertical;
       min-height: 150px;
   }
   
   .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
       border-color: var(--clr-primary);
       background: rgba(255, 255, 255, 0.05);
       box-shadow: 0 0 20px rgba(213, 159, 154, 0.1);
   }
   
   .submit-btn {
       width: 100%;
       margin-top: 1rem;
       padding: 1.5rem;
       font-size: 1rem;
   }
   
   /* Form States */
   .form-loading {
       opacity: 0.6;
       pointer-events: none;
   }
   
   .form-message {
       margin-top: 2rem;
       padding: 1.5rem;
       border-radius: 4px;
       font-size: 0.95rem;
       display: none;
       letter-spacing: 0.05em;
   }
   
   .form-message.success {
       display: block;
       background: rgba(213, 159, 154, 0.1);
       color: var(--clr-primary);
       border: 1px solid rgba(213, 159, 154, 0.3);
   }
   
   .form-message.error {
       display: block;
       background: rgba(244, 67, 54, 0.1);
       color: #ef5350;
       border: 1px solid rgba(244, 67, 54, 0.2);
   }
   
   /* ==========================================================================
      FOOTER
      ========================================================================== */
   .footer {
       background: var(--clr-bg);
       padding: 6rem 0 4rem;
       text-align: center;
       border-top: 1px solid rgba(255,255,255,0.05);
   }
   
   .footer img {
       height: 50px;
       margin: 0 auto 2rem;
       opacity: 0.8;
       filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
   }
   
   .footer p {
       font-size: 0.7rem;
       color: var(--clr-text-muted);
       letter-spacing: 0.15em;
       text-transform: uppercase;
   }
   
   /* ==========================================================================
      ANIMATIONS
      ========================================================================== */
   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(40px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   .animate-on-scroll {
       opacity: 0;
       transform: translateY(40px);
       transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
   }
   
   .animate-on-scroll.is-visible {
       opacity: 1;
       transform: translateY(0);
   }
   
   /* ==========================================================================
      RESPONSIVE
      ========================================================================== */
   @media (max-width: 768px) {
       .nav-links {
           display: none;
       }
       
       .hero h1 {
           font-size: 3rem;
       }
       
       .hero-buttons {
           flex-direction: column;
       }
       
       .contact-box {
           padding: 3rem 2rem;
       }
       
       .form-grid {
           grid-template-columns: 1fr;
       }
       
       .services-grid {
           gap: 2rem;
       }
       
       .service-image {
           height: 300px;
       }
   }
