/*
Theme Name: Gabriel Voyance Theme
Theme URI: https://gabriel-voyance.fr
Author: Alkitu
Description: Thème minimaliste et élégant, axé sur la Haute Magie et la Voyance.
Version: 1.0.0
*/

:root {
   /* Colors */
   --bg-color: #FCFBF9;
   /* Light Ivory */
   --section-bg: #F5EFEA;
   /* Light Sand/Beige */
   --text-color: #333333;
   /* Dark Charcoal for readability */
   --text-light: #5A5A5A;
   /* Medium Gray */

   /* Golden Accents */
   --primary-color: #8C7B3E;
   /* Olive Gold for Headings */
   --accent-color: #E6D070;
   /* Light Metallic Gold */
   --accent-blue: #CBA153;
   /* Medium Gold */
   --accent-gold: #927C38;
   /* Dark Golden/Khaki Accent */
   --accent-dark-gold: #7A6526;
   /* Deepest Gold for hover */

   /* Gradients */
   --gold-gradient: linear-gradient(135deg, #E6D070 0%, #CBA153 100%);

   /* Typography */
   --font-heading: 'Cinzel Decorative', serif;
   --font-body: 'Lato', sans-serif;

   /* Spacing */
   --container-width: 1200px;
   --header-height: 80px;
}

/* Reset & Base */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   background-color: var(--bg-color);
   color: var(--text-color);
   font-family: var(--font-body);
   font-size: 16px;
   line-height: 1.6;
   overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: var(--font-heading);
   color: var(--primary-color);
   line-height: 1.2;
   margin-bottom: 1rem;
}

h1 {
   font-size: 3.5rem;
   font-weight: 700;
}

h2 {
   font-size: 2.5rem;
   text-align: center;
   margin-bottom: 2rem;
   position: relative;
}

h3 {
   font-size: 1.5rem;
   font-weight: 700;
}

p {
   margin-bottom: 1.5rem;
   color: var(--text-light);
}

a {
   text-decoration: none;
   color: inherit;
   transition: color 0.3s ease;
}

ul {
   list-style: none;
}

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

/* Utility */
.container {
   max-width: var(--container-width);
   margin: 0 auto;
   padding: 0 20px;
}

.btn {
   display: inline-block;
   padding: 12px 35px;
   background: var(--gold-gradient);
   color: #fff;
   border: none;
   border-radius: 30px;
   /* Pill shape */
   font-family: var(--font-body);
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 2px;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(203, 161, 83, 0.4);
}

.btn:hover {
   background: linear-gradient(135deg, #CBA153 0%, #E6D070 100%);
   color: #fff;
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(203, 161, 83, 0.6);
}

.btn-text {
   font-weight: 700;
   text-transform: uppercase;
   font-size: 0.9rem;
   color: var(--primary-color);
   border-bottom: 2px solid var(--accent-blue);
   padding-bottom: 2px;
}

.btn-text:hover {
   color: var(--accent-dark-gold);
   border-color: var(--accent-dark-gold);
}

/* Header */
header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: var(--header-height);
   background: rgba(252, 251, 249, 0.95);
   /* Light Ivory slightly transparent */
   backdrop-filter: blur(10px);
   z-index: 1000;
   box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
   border-bottom: 1px solid rgba(203, 161, 83, 0.2);
   display: flex;
   align-items: center;
}

header .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
}

.logo img {
   height: 50px;
}

/* Nav */
.main-nav ul {
   display: flex;
   gap: 30px;
}

.main-nav a {
   font-family: var(--font-body);
   font-weight: 400;
   text-transform: uppercase;
   font-size: 0.9rem;
   letter-spacing: 1px;
   color: var(--primary-color);
}

.main-nav a:hover,
.main-nav a.active {
   color: var(--accent-gold);
}

.mobile-menu-toggle {
   display: none;
   font-size: 1.5rem;
   cursor: pointer;
}

/* Hero Section (NEW LIGHT LAYOUT) */
.hero {
   min-height: 90vh;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(120deg, var(--bg-color) 0%, #F9F6E8 35%, #F0E6B8 50%, #F9F6E8 65%, var(--bg-color) 100%);
   background-size: 300% 300%;
   animation: subtleGoldPan 12s ease-in-out infinite alternate;
   position: relative;
   padding-top: var(--header-height);
   overflow: hidden;
}

@keyframes subtleGoldPan {
   0% {
      background-position: 0% 50%;
   }

   100% {
      background-position: 100% 50%;
   }
}

.hero .container {
   z-index: 2;
   position: relative;
   max-width: var(--container-width);
}

.hero-text {
   padding: 0 20px;
   z-index: 10;
}
.hero-magic-circle {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 600px;
   max-width: 90vw;
   height: auto;
   z-index: -1;
   opacity: 0.35;
   filter: drop-shadow(0 0 30px rgba(230, 208, 112, 0.7));
   animation: spinSlowlyCenter 60s linear infinite;
   pointer-events: none;
}

@keyframes spinSlowlyCenter {
   0% {
      transform: translate(-50%, -50%) rotate(0deg);
   }

   100% {
      transform: translate(-50%, -50%) rotate(360deg);
   }
}

.hero-script-name {
   font-family: var(--font-heading);
   font-size: 5rem;
   color: var(--primary-color);
   line-height: 1.1;
   margin-bottom: 25px;
   display: block;
   text-shadow: none;
   text-transform: uppercase;
   letter-spacing: 2px;
}

.hero-bio {
   font-size: 1.15rem;
   color: var(--text-color);
   margin-bottom: 35px;
   max-width: 450px;
   line-height: 1.7;
}

/* End of Hero specific styles */

/* We removed the dark overlay pseudo-element to keep it clean */
.hero::after {
   display: none;
}

/* Services Grid */
.services-section {
   padding: 100px 0;
   background: var(--bg-color);
}

.services-grid {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 40px;
   margin-top: 50px;
   padding-bottom: 20px;
}

.service-card {
   background: #fff;
   padding: 0;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(203, 161, 83, 0.15);
   transition: transform 0.4s ease, box-shadow 0.4s ease;
   text-align: center;
   width: 100%;
   max-width: 600px;
   position: sticky;
   top: calc(var(--header-height) + 40px + (var(--card-index, 0) * 20px));
}

.service-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(203, 161, 83, 0.4);
}

.service-card img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   filter: brightness(0.95);
   border-bottom: 1px solid rgba(203, 161, 83, 0.2);
}

.service-content {
   padding: 30px;
}

.service-card h3 {
   margin-bottom: 15px;
   color: var(--primary-color);
}

/* Specific Section Colors */
.service-card.amarres h3 {
   color: #A05055;
}

.service-card.hechizos h3 {
   color: var(--accent-gold);
}

.service-card.vudu h3 {
   color: var(--accent-blue);
}

.service-card.rituales h3 {
   color: var(--accent-color);
}

/* About Section */
.about-section {
   padding: 100px 0;
   background: var(--section-bg);
   text-align: center;
}

.about-content {
   max-width: 800px;
   margin: 0 auto;
}

.about-content p {
   color: var(--text-color);
   font-size: 1.15rem;
}

.about-content i {
   color: var(--primary-color) !important;
}

.about-content strong {
   color: var(--primary-color);
}

/* Footer */
.main-footer {
   color: var(--text-color);
}

.footer-top {
   background: #1a1a1a;
   padding: 70px 0 50px;
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.5fr 1fr 1fr;
   gap: 50px;
}

.footer-brand {
   padding-right: 30px;
}

.footer-logo-text {
   font-family: var(--font-heading);
   font-size: 1.6rem;
   color: #fff;
   margin-bottom: 18px;
   position: relative;
   display: inline-block;
}

.footer-logo-text::after {
   content: '';
   position: absolute;
   bottom: -8px;
   left: 0;
   width: 40px;
   height: 2px;
   background: var(--gold-gradient);
   border-radius: 2px;
}

.footer-tagline {
   color: rgba(255,255,255,0.55);
   font-size: 0.95rem;
   line-height: 1.7;
   margin-top: 20px;
}

.footer-social {
   display: flex;
   gap: 12px;
   margin-top: 25px;
}

.footer-social a {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   border: 1px solid rgba(255,255,255,0.15);
   display: flex;
   align-items: center;
   justify-content: center;
   color: rgba(255,255,255,0.6);
   font-size: 1.1rem;
   transition: all 0.3s ease;
   text-decoration: none;
}

.footer-social a:hover {
   background: var(--accent-gold);
   border-color: var(--accent-gold);
   color: #fff;
   transform: translateY(-2px);
}

.footer-heading {
   font-family: var(--font-heading);
   font-size: 1rem;
   color: #fff;
   text-transform: uppercase;
   letter-spacing: 2px;
   margin-bottom: 25px;
   position: relative;
   padding-bottom: 12px;
}

.footer-heading::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 25px;
   height: 2px;
   background: var(--accent-gold);
   border-radius: 2px;
}

.footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
}

.footer-links li {
   margin-bottom: 12px;
}

.footer-links a {
   color: rgba(255,255,255,0.55);
   text-decoration: none;
   font-size: 0.93rem;
   transition: color 0.3s ease, padding-left 0.3s ease;
   display: inline-flex;
   align-items: center;
   gap: 8px;
}

.footer-links a:hover {
   color: var(--accent-gold);
   padding-left: 5px;
}

.footer-links a i {
   font-size: 0.85rem;
   width: 16px;
   text-align: center;
}

.footer-bottom {
   background: #111;
   padding: 20px 0;
}

.footer-bottom-inner {
   display: flex;
   justify-content: center;
   align-items: center;
}

.footer-bottom span {
   color: rgba(255,255,255,0.35);
   font-size: 0.85rem;
   letter-spacing: 0.5px;
}

@media (max-width: 768px) {
   .footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
   }

   .footer-brand {
      padding-right: 0;
   }

   .footer-logo-text::after {
      left: 50%;
      transform: translateX(-50%);
   }

   .footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
   }

   .footer-social {
      justify-content: center;
   }

   .footer-links a:hover {
      padding-left: 0;
   }
}

.social-links {
   margin: 20px 0;
}

.social-links a {
   font-size: 1.2rem;
   margin: 0 10px;
   color: var(--primary-color);
}

.sticky-phone {
   background: #fff;
   color: var(--primary-color);
   box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
   border-top: 1px solid #eee;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
   .hero .container {
      grid-template-columns: 1fr;
      text-align: center;
      padding-top: 50px;
      padding-bottom: 50px;
      gap: 30px;
   }

   .hero-text {
      text-align: center;
      padding-right: 0;
      order: 1;
      /* Text first on mobile? Or verify */
   }

   .hero-visual {
      order: 2;
      margin-top: -30px;
   }

   .hero-script-name {
      font-size: 4rem;
   }

   .hero-bio {
      margin: 0 auto 30px;
   }

   .hero-floating-img {
      max-height: 50vh;
      margin-right: 0;
      max-width: 100%;
   }

   .main-nav {
      position: fixed;
      top: var(--header-height);
      left: 0;
      width: 100%;
      background: #fff;
      padding: 20px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
      transform: translateY(-100%);
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 900;
      pointer-events: none;
   }

   .main-nav.active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
   }

   .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 20px;
   }

   .mobile-menu-toggle {
      display: block;
      color: var(--primary-color);
   }
}

/* Text Logo */
.logo-text {
   font-family: var(--font-heading);
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--primary-color);
   letter-spacing: 1px;
   text-transform: uppercase;
}

.logo-script {
   font-family: var(--font-heading);
   font-size: 1.5rem;
   /* Ajustado para que quepa bien en el menú */
   color: var(--primary-color);
   line-height: 1;
   display: inline-block;
   text-shadow: none;
   text-transform: uppercase;
   letter-spacing: 1px;
}

/* Floating WhatsApp & Sticky Phone */
.sticky-phone-bar {
   position: fixed;
   bottom: 0;
   left: 0;
   width: 100%;
   background: rgba(252, 251, 249, 0.95);
   backdrop-filter: blur(10px);
   border-top: 1px solid rgba(203, 161, 83, 0.3);
   padding: 15px;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 15px;
   z-index: 9999;
   box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.sticky-phone-text {
   font-weight: 700;
   font-size: 0.9rem;
   color: var(--text-color);
   letter-spacing: 1px;
}

.sticky-phone-number {
   font-family: var(--font-heading);
   font-weight: 900;
   font-size: 1.4rem;
   color: var(--primary-color);
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 8px;
   text-shadow: none;
}

.floating-whatsapp {
   position: fixed;
   bottom: 80px;
   /* Above sticky bar */
   right: 20px;
   background: #25D366;
   color: #fff;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 2rem;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
   z-index: 10000;
   transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
   transform: scale(1.1);
   color: #fff;
}

/* Mobile Adjustments for Sticky Elements */
@media (max-width: 768px) {
   .sticky-phone-bar {
      padding: 10px;
      flex-direction: column;
      gap: 5px;
   }

   .floating-whatsapp {
      bottom: 90px;
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
   }

}

/* Consultas Personales Section */
.consultas-home-section {
   padding: 100px 0;
   background: var(--bg-color);
   text-align: center;
}

.consultas-home-section h2 {
   color: var(--primary-color);
   margin-bottom: 20px;
}

.consultas-intro {
   max-width: 700px;
   margin: 0 auto 60px;
   font-size: 1.2rem;
   color: var(--text-light);
}

.consultas-options {
   display: flex;
   justify-content: center;
   gap: 60px;
   flex-wrap: wrap;
}

.consulta-blob {
   position: relative;
   width: 280px;
   height: 280px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   padding: 30px;
   transition: transform 0.3s ease;
}

.consulta-blob:hover {
   transform: scale(1.05);
}

.blob-shape {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: var(--gold-gradient);
   z-index: 1;
   border: 1px solid rgba(203, 161, 83, 0.4);
   border-radius: 45% 55% 70% 30% / 30% 30% 70% 70%;
   animation: blob-pulse 8s ease-in-out infinite;
   box-shadow: 0 10px 30px rgba(203, 161, 83, 0.15);
}

.consulta-blob:nth-child(2) .blob-shape {
   border-radius: 68% 32% 44% 56% / 46% 67% 33% 54%;
   animation-delay: -4s;
}

.consulta-content {
   position: relative;
   z-index: 2;
}

.consulta-time {
   font-family: var(--font-heading);
   font-size: 2.5rem;
   color: #fff;
   margin-bottom: 5px;
   display: block;
}

.consulta-desc {
   font-size: 0.95rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: #fff;
   margin-bottom: 15px;
}

.consulta-price {
   font-weight: 700;
   font-size: 1.2rem;
   color: var(--accent-gold);
}

@keyframes blob-pulse {
   0% {
      border-radius: 45% 55% 70% 30% / 30% 30% 70% 70%;
   }

   50% {
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
   }

   100% {
      border-radius: 45% 55% 70% 30% / 30% 30% 70% 70%;
   }
}

/* Call to Action Section */
.cta-home-section {
   padding: 100px 0 120px;
   background: var(--gold-gradient);
   text-align: center;
   position: relative;
   color: #fff;
   overflow: hidden;
}

.cta-home-section::before {
   content: '';
   position: absolute;
   top: -60%;
   left: -20%;
   width: 140%;
   height: 140%;
   background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
   pointer-events: none;
}

.cta-ornament {
   position: absolute;
   left: 0;
   right: 0;
   height: 30px;
   z-index: 3;
}

.cta-ornament-top {
   top: 0;
   background: linear-gradient(180deg, rgba(252,251,249,0.15) 0%, transparent 100%);
   border-top: 1px solid rgba(255,255,255,0.15);
}

.cta-ornament-bottom {
   bottom: 0;
   background: linear-gradient(0deg, rgba(0,0,0,0.08) 0%, transparent 100%);
}

.cta-wrapper {
   max-width: 700px;
   margin: 0 auto;
   position: relative;
   z-index: 2;
}

.cta-eyebrow {
   display: inline-block;
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 4px;
   color: rgba(255,255,255,0.8);
   margin-bottom: 15px;
   font-weight: 400;
}

.cta-title {
   font-family: var(--font-heading);
   font-size: 3.2rem;
   color: #fff;
   margin-bottom: 15px;
   line-height: 1.2;
   text-shadow: none;
}

.cta-subtitle {
   font-size: 1.05rem;
   letter-spacing: 1px;
   color: rgba(255,255,255,0.85);
   margin-bottom: 45px;
}

.cta-phone-container {
   margin: 0 auto 35px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   padding: 22px 40px;
   background: rgba(255,255,255,0.97);
   border-radius: 60px;
   border: 2px solid rgba(255,255,255,0.5);
   box-shadow: 0 15px 50px rgba(0,0,0,0.12), 0 0 0 1px rgba(203,161,83,0.2) inset;
   width: fit-content;
   max-width: 90%;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-phone-container:hover {
   box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(203,161,83,0.4) inset;
   transform: translateY(-3px);
}

.cta-phone-icon-ring {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: var(--gold-gradient);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   animation: cta-ring-pulse 2.5s ease-in-out infinite;
}

.cta-phone-icon-ring i {
   color: #fff;
   font-size: 1.1rem;
}

@keyframes cta-ring-pulse {
   0%, 100% { box-shadow: 0 0 0 0 rgba(203,161,83,0.4); }
   50% { box-shadow: 0 0 0 10px rgba(203,161,83,0); }
}

.cta-phone-number {
   font-family: var(--font-heading);
   font-size: 2.1rem;
   font-weight: 700;
   color: var(--primary-color);
   text-decoration: none;
   letter-spacing: 1px;
   line-height: 1;
   white-space: nowrap;
}

.cta-actions {
   margin-top: 10px;
}

.cta-whatsapp-btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 35px;
   background: #25D366;
   color: #fff;
   border-radius: 50px;
   font-size: 1rem;
   font-weight: 600;
   text-decoration: none;
   letter-spacing: 0.5px;
   transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
   box-shadow: 0 5px 20px rgba(37,211,102,0.3);
}

.cta-whatsapp-btn:hover {
   background: #1ebe5a;
   transform: translateY(-2px);
   box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.cta-whatsapp-btn i {
   font-size: 1.3rem;
}

@media (max-width: 768px) {
   .consultas-options {
      flex-direction: column;
      align-items: center;
   }

   .cta-home-section {
      padding: 70px 0 90px;
   }

   .cta-title {
      font-size: 2.4rem;
   }

   .cta-phone-container {
      padding: 16px 20px;
      gap: 12px;
      max-width: 100%;
   }

   .cta-phone-number {
      font-size: 1.4rem;
   }

   .cta-phone-icon-ring {
      width: 40px;
      height: 40px;
   }

   .cta-phone-icon-ring i {
      font-size: 0.95rem;
   }
}

/* =============================================
   Testimonials Section  
   ============================================= */
.testimonials-section {
   padding: 100px 0;
   background: var(--bg-color);
   text-align: center;
}

.testimonials-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   justify-content: center;
   margin-top: 50px;
}

.testimonial-card {
   background: #fff;
   border: 1px solid rgba(203, 161, 83, 0.2);
   border-radius: 12px;
   padding: 30px;
   width: 100%;
   max-width: 450px;
   text-align: left;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   transition: transform 0.3s ease;
}

.testimonial-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 40px rgba(203, 161, 83, 0.15);
}

.testimonial-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
}

.testimonial-text {
   flex: 1;
   min-width: 0;
   padding-top: 5px;
}

.testimonial-text h3 {
   margin-bottom: 5px;
   font-size: 1.2rem;
   color: var(--text-color);
}

.testimonial-label {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--primary-color);
   font-weight: 700;
}

.testimonial-avatar-wrapper {
   flex-shrink: 0;
   border-radius: 50%;
   overflow: hidden;
}

.testimonial-avatar {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.testimonial-audio {
   width: 100%;
   margin-top: auto;
}

.testimonial-audio audio {
   width: 100%;
   height: 32px;
   display: block;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
   .testimonials-grid {
      flex-direction: column;
      align-items: stretch;
   }

   .testimonial-card {
      flex: none;
      width: 100%;
   }
}

/* Nouvel Process Section */
.process-home-section {
   padding: 100px 0;
   background: var(--bg-color);
   text-align: center;
}

.process-intro {
   max-width: 600px;
   margin: 0 auto 60px;
   font-size: 1.15rem;
   color: var(--text-light);
}

.process-steps {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
   margin-bottom: 20px;
}

.process-step {
   background: #fff;
   padding: 40px 30px;
   border-radius: 12px;
   box-shadow: 0 10px 30px rgba(0,0,0,0.05);
   border-top: 4px solid var(--accent-gold);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:nth-child(2) {
   border-top-color: var(--accent-blue);
   transform: translateY(20px);
}

.process-step:nth-child(3) {
   border-top-color: var(--accent-color);
}

.process-step:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 40px rgba(203, 161, 83, 0.15);
}

.process-step:nth-child(2):hover {
   transform: translateY(15px);
}

.step-number {
   width: 60px;
   height: 60px;
   background: var(--gold-gradient);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 25px;
   color: #fff;
   font-family: var(--font-heading);
   font-size: 1.8rem;
   font-weight: bold;
   box-shadow: 0 5px 15px rgba(203, 161, 83, 0.4);
}

.process-step h3 {
   margin-bottom: 15px;
   color: var(--primary-color);
   font-size: 1.3rem;
}

.process-step p {
   font-size: 0.95rem;
   color: var(--text-light);
   margin-bottom: 0;
   line-height: 1.6;
}

@media (max-width: 900px) {
   .process-step:nth-child(2) {
      transform: translateY(0);
   }
   .process-step:nth-child(2):hover {
      transform: translateY(-5px);
   }
}