.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-4435 .elementor-element.elementor-element-676ba6d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-4435 .elementor-element.elementor-element-076382b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-4435 .elementor-element.elementor-element-1d0ae41{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;overflow:visible;}.elementor-4435 .elementor-element.elementor-element-23e2251{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-70px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;overflow:visible;}.elementor-4435 .elementor-element.elementor-element-7cfbfd7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-60px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;overflow:visible;}.elementor-4435 .elementor-element.elementor-element-a5b588f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-4435 .elementor-element.elementor-element-f5d984b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-22d9b09 *//* --- Domiciliation Hero Section - Advanced UI/UX --- */
:root {
  --font-hero: 'Lato', sans-serif;

  /* Background Colors & Noise */
  --hero-bg-section: #F9FCFF; /* Very light, almost white for the page */
  
  --hero-grad-top-white: rgba(255, 255, 255, 1);
  --hero-grad-mid-white-tint: rgba(245, 250, 255, 0.95); /* Hint of blue */
  --hero-grad-light-blue-base: rgba(220, 238, 255, 0.9); /* Base for the blue part */
  --hero-grad-bottom-blue: rgba(200, 228, 255, 1);   /* Light blue for the bottom 20% */

  /* Noise SVG Filter - encoded for direct use in CSS */
  --noise-svg-filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.07'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  --noise-opacity: 0.4; /* Adjust opacity of the noise overlay */


  /* Text & Button Colors - High Contrast & Professional */
  --hero-text-heading: #082849;    /* Deeper, more authoritative blue-black */
  --hero-text-body: #2A5279;        /* Clear, mature blue for body text */

  --hero-button-primary-bg: var(--hero-text-heading); 
  --hero-button-primary-text: #FFFFFF;
  --hero-button-primary-bg-hover: #123762; /* Refined hover for primary */
  
  --hero-button-secondary-border: #A0B5CC; /* Softer, desaturated blue border */
  --hero-button-secondary-text: var(--hero-text-body);
  --hero-button-secondary-bg-hover: rgba(160, 181, 204, 0.08); 
}

/* --- Base & Animations --- */
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.domiciliation-hero-section {
  font-family: var(--font-hero);
  padding: clamp(70px, 14vh, 140px) 30px; 
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh; /* Can be 100vh if you want it to always fill */
  background-color: var(--hero-bg-section); 
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; 
}

.domiciliation-hero-container {
  width: 100%; 
  max-width: 1080px; 
  padding: clamp(70px, 9vw, 120px) clamp(50px, 7vw, 100px); 
  border-radius: 32px; 
  
  /* GRADIENT: 80% White top, 20% Light Blue bottom */
  background-image: linear-gradient(175deg, /* Slightly off-vertical angle */
    var(--hero-grad-top-white) 0%, 
    var(--hero-grad-top-white) 60%, /* Hold white longer */
    var(--hero-grad-mid-white-tint) 75%, /* Start transition to blue subtly */
    var(--hero-grad-light-blue-base) 80%, /* Hit the main blue base around 80% */
    var(--hero-grad-bottom-blue) 100%
  );

  text-align: center;
  box-shadow: 0 35px 80px -25px rgba(100, 130, 180, 0.22); /* Even softer, more spread shadow */
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative; /* Crucial for the ::before noise overlay */
  isolation: isolate; /* Prevents ::before from appearing on top of text due to z-index issues */
}

/* Noise Overlay */
.domiciliation-hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--noise-svg-filter);
  opacity: var(--noise-opacity);
  pointer-events: none; /* Doesn't interfere with mouse events */
  z-index: -1; /* Sits behind the content but on top of the gradient */
  border-radius: inherit; /* Inherits the container's border radius */
}


.domiciliation-hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem); 
  font-weight: 900; /* Lato Black */
  line-height: 1.18; 
  color: var(--hero-text-heading);
  margin-bottom: 0.55em; 
  letter-spacing: -0.035em; 
  max-width: 850px;
  animation: fadeInSlideUp 0.8s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

.domiciliation-hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 300; /* Lato Light */
  line-height: 1.75; 
  max-width: 700px; 
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.2em; 
  color: var(--hero-text-body);
  animation: fadeInSlideUp 0.8s 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

.domiciliation-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 28px;
  animation: fadeInSlideUp 0.8s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

.domiciliation-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px; 
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 700; /* Lato Bold */
  border-radius: 10px; 
  text-decoration: none;
  transition-property: background-color, border-color, transform, box-shadow;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  min-width: 240px;
  box-sizing: border-box;
  border: 2px solid transparent;
  letter-spacing: 0.015em;
  cursor: pointer;
}

.domiciliation-hero-button.primary {
  background-color: var(--hero-button-primary-bg);
  color: var(--hero-button-primary-text);
  border-color: var(--hero-button-primary-bg);
  box-shadow: 0 6px 12px -4px rgba(var(--hero-button-primary-bg), 0.35), 
              0 0 0 0px rgba(var(--hero-button-primary-bg), 0.2); /* For active state */
}
.domiciliation-hero-button.primary:hover {
  background-color: var(--hero-button-primary-bg-hover);
  border-color: var(--hero-button-primary-bg-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 18px -4px rgba(var(--hero-button-primary-bg), 0.38),
              0 0 0 0px rgba(var(--hero-button-primary-bg), 0.2);
}
.domiciliation-hero-button.primary:active {
  transform: translateY(0px) scale(0.99);
  box-shadow: 0 3px 8px -3px rgba(var(--hero-button-primary-bg), 0.4),
              inset 0 2px 4px rgba(0,0,0,0.1); /* Subtle inner press */
}
.domiciliation-hero-button.primary:focus-visible {
  outline: 3px solid var(--hero-button-primary-bg-hover);
  outline-offset: 3px;
}


.domiciliation-hero-button.secondary {
  background-color: transparent;
  color: var(--hero-button-secondary-text);
  border-color: var(--hero-button-secondary-border);
}
.domiciliation-hero-button.secondary:hover {
  background-color: var(--hero-button-secondary-bg-hover);
  border-color: var(--hero-button-secondary-border); 
  color: var(--hero-text-heading); /* Darken text on hover for more emphasis */
  transform: translateY(-2px);
}
.domiciliation-hero-button.secondary:active {
  transform: translateY(0px);
  background-color: rgba(160, 181, 204, 0.15); /* Slightly more pronounced press */
}
.domiciliation-hero-button.secondary:focus-visible {
  outline: 3px solid var(--hero-button-secondary-border);
  outline-offset: 3px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .domiciliation-hero-container {
        max-width: 94%; 
        border-radius: 28px;
    }
    .domiciliation-hero-title {
        letter-spacing: -0.028em;
    }
}

@media (max-width: 768px) {
    .domiciliation-hero-section {
        min-height: 88vh; 
        padding: clamp(60px, 12vh, 120px) 20px;
    }
    .domiciliation-hero-container {
        padding: clamp(60px, 8vw, 100px) clamp(30px, 5.5vw, 70px); 
        border-radius: 24px; 
    }
     .domiciliation-hero-title {
        font-size: clamp(2.1rem, 7vw, 3rem);
    }
    .domiciliation-hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    .domiciliation-hero-button {
        padding: 15px 35px;
        min-width: 210px;
    }
}

@media (max-width: 480px) {
  .domiciliation-hero-section {
        min-height: auto; 
        padding: 50px 15px;
  }
  .domiciliation-hero-container {
        border-radius: 20px;
        padding: 50px 20px;
  }
  .domiciliation-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .domiciliation-hero-button {
    width: 100%;
    max-width: 340px; 
    min-width: unset;
    padding: 15px 24px; 
    font-size: 1rem; /* Buttons slightly larger for mobile tap */
  }
  .domiciliation-hero-title {
    font-size: clamp(1.9rem, 8.5vw, 2.5rem);
    line-height: 1.2;
  }
  .domiciliation-hero-subtitle {
    font-size: clamp(0.95rem, 4.8vw, 1.05rem);
    margin-bottom: 2.8em;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dbb3297 *//* --- Services Overview Section - Elite UI/UX with Glassmorphism --- */
:root {
  --font-primary: 'Noto Serif', Georgia, Times, "Times New Roman", serif;

  /* Color Palette */
  --color-background-section: #EFF6FF; /* Very light blue, almost white, for the page */
  
  /* Glass Card Colors */
  --color-glass-bg: rgba(255, 255, 255, 0.45); /* Semi-transparent white for glass */
  --color-glass-border: rgba(255, 255, 255, 0.25); /* Subtle white border for glass edge */
  --color-glass-shadow: rgba(31, 38, 135, 0.1); /* Subtle shadow for depth beneath glass */

  /* Text Colors */
  --color-text-main-title: #1C3D5A; /* Specific Dark Blue for main title */
  --color-text-heading-card: #1E293B;  /* Dark Slate for card titles */
  --color-text-body: #374151;       /* Medium-Dark Gray for body text */
  --color-text-subtitle-main: #4B5563; /* Subtitle for the main header */

  /* Accent for Icons */
  --color-accent-icon: #25C2E9; /* Vibrant Cyan/Sky Blue (like a Cyan 300-400) */
  --color-accent-icon-bg: rgba(37, 194, 233, 0.1); /* Tinted bg for icon wrapper */
}

/* --- Global Styles for the Section --- */
.services-overview-section {
  font-family: var(--font-primary);
  background-color: var(--color-background-card);
  /* Example of a more complex background if desired for glass to sit on */
  /* background-image: linear-gradient(45deg, #e0f2ff 0%, #f0f8ff 100%); */
  padding: clamp(80px, 12vh, 120px) clamp(20px, 4vw, 40px);
  box-sizing: border-box;
  color: var(--color-text-body); 
}

.services-overview-container {
  max-width: 1200px; 
  margin-left: auto;
  margin-right: auto;
}

.services-overview-header {
  text-align: center;
  margin-bottom: clamp(50px, 7vw, 80px);
}

.services-overview-main-title {
  font-size: clamp(2.3rem, 3.8vw, 3rem); 
  font-weight: 700; /* Noto Serif Bold */
  color: var(--color-text-main-title); /* Applied dark blue */
  line-height: 1.25;
  letter-spacing: -0.01em; /* Noto Serif can sometimes use a touch of negative spacing */
  margin-bottom: 0.6em;
}

.services-overview-subtitle {
  font-size: clamp(1rem, 1.7vw, 1.125rem);
  font-weight: 400; /* Noto Serif Regular */
  color: var(--color-text-subtitle-main);
  line-height: 1.75; /* Serif fonts often need more line height */
  max-width: 720px; 
  margin-left: auto;
  margin-right: auto;
}

/* --- Service Cards Grid --- */
.services-grid {
  display: grid;
  /* Default to 1 column for mobile, then adjust up */
  grid-template-columns: 1fr; 
  gap: clamp(30px, 4vw, 40px);
}

/* Tablet: 3 columns */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Small Desktops might also get 3 columns with the above, 
   or you can use auto-fit for larger screens if preferred.
   If container is wide enough, auto-fit with minmax can work too.
   Forcing 3 for tablet is specific. */


/* --- Glass Card Styling --- */
.service-card {
  background-color: var(--color-glass-bg);
  backdrop-filter: blur(12px) saturate(150%); /* Key for glass effect + slight saturation boost */
  -webkit-backdrop-filter: blur(12px) saturate(150%); /* Safari support */
  border-radius: 20px; 
  padding: clamp(30px, 3.5vw, 40px);
  text-align: left; 
  box-shadow: 0 0 1px rgba(0,0,0,0.04), /* Super subtle edge */
              0 2px 4px rgba(0,0,0,0.02), /* Small spread */
              var(--color-glass-shadow) 0px 10px 25px -5px, /* Main soft shadow */
              inset 0px 1px 1px 0px rgba(255, 255, 255, 0.5), /* Inner top highlight */
              inset 0px -1px 1px 0px rgba(255, 255, 255, 0.1); /* Inner bottom subtle highlight */
  border: 1px solid var(--color-glass-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), /* Elastic bounce */
              box-shadow 0.3s ease-out;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02); /* More playful hover */
  box-shadow: 0 0 2px rgba(0,0,0,0.06),
              0 4px 8px rgba(0,0,0,0.04),
              rgba(37, 194, 233, 0.15) 0px 15px 35px -10px, /* Accent color in hover shadow */
              inset 0px 1px 1px 0px rgba(255, 255, 255, 0.6),
              inset 0px -1px 1px 0px rgba(255, 255, 255, 0.15);
}

.service-card-icon-wrapper {
  width: 60px; 
  height: 60px;
  border-radius: 14px; 
  background-color: var(--color-accent-icon-bg);
  display: flex; 
  align-items: center;
  justify-content: center;
  margin-bottom: 22px; 
  flex-shrink: 0;
  /* Remove shadow from icon wrapper for glass card, or make it very subtle */
  /* box-shadow: 0 4px 8px rgba(var(--color-accent-icon), 0.2); */
}

.service-card-icon-wrapper svg {
  stroke: var(--color-accent-icon); 
  width: 28px; 
  height: 28px;
}

.service-card-title {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700; /* Noto Serif Bold */
  color: var(--color-text-heading-card);
  margin-bottom: 0.6em;
  line-height: 1.4;
}

.service-card-description {
  font-size: clamp(0.9rem, 1.5vw, 0.95rem);
  font-weight: 400; /* Noto Serif Regular */
  color: var(--color-text-body);
  line-height: 1.75; /* More line height for serif */
  flex-grow: 1; 
}

/* --- Responsive Adjustments --- */
@media (max-width: 767px) { /* Smaller tablets / Large Mobiles - back to 1 or 2 columns */
  .services-grid {
     grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
     gap: clamp(25px, 3.5vw, 30px);
  }
  .services-overview-main-title {
    font-size: clamp(1.9rem, 5vw, 2.5rem);
  }
  .services-overview-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  }
  .service-card {
    padding: clamp(25px, 3vw, 30px);
    text-align: center; 
    align-items: center;
    backdrop-filter: blur(10px) saturate(140%); /* Slightly less blur for mobile perf */
    -webkit-backdrop-filter: blur(10px) saturate(140%);
  }
}

@media (max-width: 480px) { /* Mobile */
  .services-overview-section {
    padding: clamp(60px, 10vh, 90px) clamp(15px, 3vw, 20px);
  }
  .services-overview-header {
    margin-bottom: clamp(40px, 6vw, 60px);
  }
  .services-grid {
     grid-template-columns: 1fr; /* Force 1 column */
     gap: 25px;
  }
  .service-card-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 12px;
  }
  .service-card-icon-wrapper svg {
    width: 26px;
    height: 26px;
  }
  .service-card-title {
    font-size: 1.05rem;
  }
  .service-card-description {
    font-size: 0.9rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-aa88a4a *//* --- Domiciliation Details Section --- */
:root {
  --font-serif-dom: 'Noto Serif', Georgia, Times, "Times New Roman", serif;
  --font-sans-dom: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --dom-color-section-bg: #FFFFFF;
  --dom-color-text-heading-main: #1a2e44;
  --dom-color-text-subheading: #2c3e50;
  --dom-color-text-body: #526278;
  --dom-color-accent: #0891B2;
  --dom-color-accent-light: #e0f7fa;
  --dom-color-accent-dark: #067C9A;
  --dom-color-button-text: #FFFFFF;
  --dom-color-image-border: #dee7f0;
  --dom-color-list-icon: var(--dom-color-accent);
  --dom-shadow-soft: 0 4px 15px -2px rgba(44, 62, 80, 0.06);
  --dom-shadow-medium: 0 8px 25px -5px rgba(44, 62, 80, 0.08);
  --dom-shadow-interactive: 0 6px 20px -4px rgba(8, 145, 178, 0.25);
  --dom-shadow-interactive-hover: 0 8px 25px -3px rgba(8, 145, 178, 0.3);
  --brand-blue-primary-rgb: 37, 99, 235;
  --brand-teal-primary-rgb: 13, 148, 136; /* Added this from previous section for consistency */
  --white: #ffffff; /* Defined white for clarity */
}

.domiciliation-details-section {
  font-family: var(--font-sans-dom);
  background-color: var(--dom-color-section-bg);
  padding: clamp(70px, 12vw, 120px) clamp(20px, 4vw, 40px);
  box-sizing: border-box;
  overflow: hidden;
}

.domiciliation-details-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: flex-start;
}

@media (min-width: 992px) {
  .domiciliation-details-container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(60px, 8vw, 90px);
    align-items: center;
  }
}

.domiciliation-content {
  opacity: 0;
  transform: translateX(-30px);
  animation: domContentSlideInFromLeft 1s 0.2s ease-out forwards;
}

.domiciliation-header-pill {
  display: inline-block;
  padding: 8px 22px;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  font-weight: 500;
  background-color: var(--dom-color-accent-light);
  color: var(--dom-color-accent);
  border-radius: 9999px;
  margin-bottom: clamp(20px, 3vw, 28px);
  border: 1px solid var(--dom-color-accent);
  box-shadow: 0 2px 5px -1px rgba(8, 145, 178, 0.1);
}

.domiciliation-main-title {
  font-family: var(--font-serif-dom);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dom-color-text-heading-main);
  line-height: 1.25;
  margin: 0 0 0.8em 0;
  letter-spacing: -0.01em;
}

.domiciliation-intro-text {
  font-size: clamp(0.95rem, 1.9vw, 1.1rem);
  font-weight: 400;
  color: var(--dom-color-text-body);
  line-height: 1.75;
  margin: 0 0 3em 0;
  max-width: 650px;
}

.domiciliation-sub-title {
  font-family: var(--font-serif-dom);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--dom-color-text-subheading);
  margin: 0 0 1.2em 0;
  padding-bottom: 0.4em;
  border-bottom: 2px solid var(--dom-color-accent);
  display: inline-block;
}
.domiciliation-benefits,
.domiciliation-target-audience {
    margin-bottom: 3em;
}
.domiciliation-benefits .domiciliation-sub-title,
.domiciliation-target-audience .domiciliation-sub-title {
    display: block;
}


.benefit-list,
.target-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 18px);
}

.benefit-list li,
.target-list li {
  display: flex;
  align-items: flex-start;
  font-size: clamp(0.9rem, 1.7vw, 1rem);
  color: var(--dom-color-text-body);
  line-height: 1.65;
  opacity: 0;
  transform: translateX(-20px);
  animation: domListItemSlideIn 0.6s ease-out forwards;
}
.benefit-list li:nth-child(1) { animation-delay: 0.5s; }
.benefit-list li:nth-child(2) { animation-delay: 0.6s; }
.benefit-list li:nth-child(3) { animation-delay: 0.7s; }
.benefit-list li:nth-child(4) { animation-delay: 0.8s; }
.benefit-list li:nth-child(5) { animation-delay: 0.9s; }

.target-list li:nth-child(1) { animation-delay: 0.5s; }
.target-list li:nth-child(2) { animation-delay: 0.6s; }
.target-list li:nth-child(3) { animation-delay: 0.7s; }
.target-list li:nth-child(4) { animation-delay: 0.8s; }


.benefit-icon,
.target-icon {
  color: var(--dom-color-list-icon);
  margin-right: 14px;
  flex-shrink: 0;
  margin-top: 0.15em;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}
.benefit-list li:hover .benefit-icon,
.target-list li:hover .target-icon {
    transform: scale(1.15) rotate(-5deg);
}


.domiciliation-cta {
  margin-top: 2.5em;
}

.domiciliation-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--dom-color-accent);
  color: var(--dom-color-button-text);
  font-family: var(--font-sans-dom);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 600;
  padding: clamp(12px, 2vw, 15px) clamp(28px, 4.5vw, 35px);
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out, box-shadow 0.3s ease-out;
  box-shadow: var(--dom-shadow-interactive);
  border: none;
}

.domiciliation-button:hover,
.domiciliation-button:focus-visible {
  background-color: var(--dom-color-accent-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--dom-shadow-interactive-hover);
}
.domiciliation-button:focus-visible {
  outline: 2px solid var(--dom-color-accent-dark);
  outline-offset: 3px;
}

.cta-arrow-fa {
  margin-left: 10px;
  font-size: 0.9em;
  transition: transform 0.25s ease-out;
}
.domiciliation-button:hover .cta-arrow-fa {
  transform: translateX(4px);
}

/* Image Container Styling */
.domiciliation-image-container {
  width: 100%;
  aspect-ratio: 1/1.05;
  background-color: var(--white); /* CHANGED TO WHITE */
  border-radius: 24px;
  overflow: hidden;   /* CRITICAL: This clips the <img> to the border-radius */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dom-color-image-border);
  box-shadow: var(--dom-shadow-medium);
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  animation: domContentSlideInFromRight 1s 0.4s ease-out forwards;
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}
.domiciliation-image-container:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: var(--dom-shadow-strong);
}

.domiciliation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* This will make the image fill the container, cropping if needed */
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.domiciliation-image-container:hover .domiciliation-image {
  transform: scale(1.08);
}

.domiciliation-image-overlay {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(var(--brand-blue-primary-rgb), 0.15) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}
.domiciliation-image-container:hover .domiciliation-image-overlay {
    opacity: 0.9;
}

/* Animation Keyframes */
@keyframes domContentSlideInFromLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes domContentSlideInFromRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes domListItemSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes domContentFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .domiciliation-details-container {
        grid-template-columns: 1fr;
    }
    .domiciliation-content {
        animation-name: domContentFadeInUp;
        transform: translateY(20px);
        animation-delay: 0.2s;
    }
    .domiciliation-image-container {
        order: -1;
        max-height: 480px;
        animation-name: domContentFadeInUp;
        transform: translateY(20px);
        animation-direction: normal;
        animation-delay: 0.1s;
    }
}

@media (max-width: 768px) {
  .domiciliation-main-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .domiciliation-intro-text, .benefit-list li, .target-list li { font-size: clamp(0.9rem, 2.8vw, 1rem); }
  .domiciliation-sub-title { font-size: clamp(1.2rem, 4vw, 1.5rem); }
  .domiciliation-button {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
  }
  .domiciliation-cta { text-align: center; }
}

@media (max-width: 480px) {
    .domiciliation-header-pill { padding: 7px 18px; font-size: 0.75rem;}
    .domiciliation-main-title { font-size: clamp(1.6rem, 7vw, 2rem); }
    .benefit-list, .target-list { gap: 10px; }
    .benefit-list li, .target-list li { gap: 10px; font-size: 0.85rem; }
    .benefit-icon, .target-icon { margin-right: 10px; font-size: 1em; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6734cfc *//* --- Backoffice Support Section --- */
:root {
  --brand-blue-darker: #111827;
  --brand-blue-dark: #1e3a8a;
  --brand-blue-primary: #2563eb;
  --brand-blue-hover: #3b82f6;
  --brand-teal-primary: #0d9488;
  --brand-teal-hover: #0f766e;
  --brand-teal-light: #ccfbf1;
  --brand-teal-icon-text: #134e4a; /* Used for icon color within the teal wrapper */

  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-tertiary: #6b7280;
  --bg-main: #ffffff;
  --bg-section-backoffice: #f9fafb;
  --bg-card-feature: #ffffff;
  --bg-image-fallback: #e9edf2; /* Fallback for image loading */
  --border-color: #e5e7eb;
  --border-color-light: #f3f4f6;
  --white: #ffffff;
  --font-main: 'Noto Sans', sans-serif;

  --shadow-soft: 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 20px -4px rgba(0, 0, 0, 0.07);
  --shadow-strong: 0 12px 24px -6px rgba(0, 0, 0, 0.09);
  --shadow-xl: 0 20px 35px -10px rgba(0, 0, 0, 0.1), 0 8px 15px -8px rgba(0, 0, 0, 0.06);
  --shadow-interactive-accent: 0 6px 18px -5px rgba(13, 148, 136, 0.25);
  --brand-teal-primary-rgb: 13, 148, 136;
  --brand-blue-primary-rgb: 37, 99, 235;
}

.backoffice-support-section {
  padding: clamp(70px, 12vw, 120px) 0;
  background-color: var(--bg-main);
  font-family: var(--font-main);
  color: var(--text-primary);
  overflow: hidden;
}

.backoffice-container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 3vw, 30px);
  padding-right: clamp(20px, 3vw, 30px);
}

.backoffice-section-header {
  text-align: center;
  margin-bottom: clamp(50px, 8vw, 70px);
  opacity: 0;
  transform: translateY(25px);
  animation: backofficeHeaderFadeInUp 0.9s 0.1s ease-out forwards;
}

.backoffice-main-title {
  font-size: clamp(2.3rem, 5vw, 3.3rem);
  font-weight: 700;
  color: var(--brand-blue-darker);
  line-height: 1.25;
  margin: 0 0 18px 0;
  letter-spacing: -0.015em;
}

.backoffice-main-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.backoffice-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 60px);
  align-items: center;
}

@media (min-width: 992px) {
  .backoffice-content-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(50px, 7vw, 80px);
  }
  .backoffice-image-column { order: 1; }
  .backoffice-details-column { order: 2; }
}

.backoffice-image-column {
  opacity: 0;
  transform: translateX(-30px);
  animation: backofficeContentSlideIn 1s 0.3s ease-out forwards;
  --slide-direction: -30px;
}

.backoffice-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background-color: var(--bg-image-fallback);
  transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}
.backoffice-image-wrapper:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.backoffice-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease-out;
}
.backoffice-image-wrapper:hover .backoffice-image {
    transform: scale(1.05);
}

.backoffice-image-deco-shape-1,
.backoffice-image-deco-shape-2 {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    z-index: -1;
}
.backoffice-image-deco-shape-1 {
    width: 160px;
    height: 160px;
    background-color: rgba(var(--brand-teal-primary-rgb), 0.08);
    top: -40px;
    left: -50px;
    transform: scale(0.8);
}
.backoffice-image-deco-shape-2 {
    width: 110px;
    height: 110px;
    background-color: rgba(var(--brand-blue-primary-rgb), 0.09);
    bottom: -30px;
    right: -40px;
    transform: scale(0.8);
}
.backoffice-image-wrapper:hover .backoffice-image-deco-shape-1 {
    transform: scale(1.1) rotate(15deg);
    opacity: 0.5;
    top: -25px; left: -30px;
}
.backoffice-image-wrapper:hover .backoffice-image-deco-shape-2 {
    transform: scale(1.1) rotate(-20deg);
    opacity: 0.6;
    bottom: -20px; right: -25px;
}

.backoffice-details-column {
  opacity: 0;
  transform: translateX(30px);
  animation: backofficeContentSlideIn 1s 0.45s ease-out forwards;
  --slide-direction: 30px;
}

.backoffice-sub-heading {
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  font-weight: 600;
  color: var(--brand-blue-darker);
  margin: 0 0 clamp(12px, 2vw, 18px) 0;
  position: relative;
  padding-bottom: 8px;
}
.backoffice-sub-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--brand-teal-primary);
    border-radius: 2px;
}

.backoffice-sub-description {
  font-size: clamp(0.95rem, 1.9vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 clamp(25px, 4vw, 35px) 0;
}

.backoffice-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(30px, 4.5vw, 40px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 25px);
}

.backoffice-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  transform: translateY(15px);
  animation: backofficeFeatureItemFadeInUp 0.7s ease-out forwards;
}
.backoffice-features-list .backoffice-feature-item:nth-child(1) { animation-delay: 0.7s; }
.backoffice-features-list .backoffice-feature-item:nth-child(2) { animation-delay: 0.8s; }
.backoffice-features-list .backoffice-feature-item:nth-child(3) { animation-delay: 0.9s; }
.backoffice-features-list .backoffice-feature-item:nth-child(4) { animation-delay: 1.0s; }

.backoffice-feature-icon-wrapper {
  width: clamp(42px, 5.5vw, 48px);
  height: clamp(42px, 5.5vw, 48px);
  background-color: var(--brand-teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(13, 148, 136, 0.1);
}
.backoffice-feature-item:hover .backoffice-feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--brand-teal-primary);
  box-shadow: 0 4px 8px rgba(13, 148, 136, 0.2);
}
.backoffice-feature-item:hover .amenity-icon {
  color: var(--white);
}

.amenity-icon { /* Font Awesome icon styling */
  font-size: clamp(18px, 3vw, 22px);
  color: var(--brand-teal-icon-text); /* Using the darker teal for icon on light teal bg */
  line-height: 1;
  transition: color 0.3s ease;
}

.backoffice-feature-text h4 {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 5px 0;
}

.backoffice-feature-text p {
  font-size: clamp(0.85rem, 1.7vw, 0.9rem);
  color: var(--text-tertiary);
  line-height: 1.6;
  margin: 0;
}

.backoffice-btn {
  padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  align-self: flex-start;
}
.backoffice-btn-primary {
  background-color: var(--brand-teal-primary);
  color: var(--white);
  box-shadow: 0 4px 15px -3px rgba(var(--brand-teal-primary-rgb), 0.4);
}
.backoffice-btn-primary:hover {
  background-color: var(--brand-teal-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 7px 20px -4px rgba(var(--brand-teal-primary-rgb), 0.5);
}
.btn-arrow-icon { /* Assuming Font Awesome is used for button arrow */
  font-size: 0.9em; /* Adjust if FA icon is too big/small */
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.backoffice-btn-primary:hover .btn-arrow-icon {
  transform: translateX(3px);
}

/* Animation Keyframes */
@keyframes backofficeHeaderFadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes backofficeContentSlideIn {
  from { opacity: 0; transform: translateX(var(--slide-direction)); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes backofficeFeatureItemFadeInUp {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .backoffice-content-grid {
    /* Image stacks above content due to HTML order */
  }
  .backoffice-image-column,
  .backoffice-details-column {
    transform: translateY(20px);
    --slide-direction: 0;
    animation: backofficeHeaderFadeInUp 0.8s ease-out forwards;
  }
  .backoffice-image-column { animation-delay: 0.2s; }
  .backoffice-details-column { animation-delay: 0.35s; margin-top: 30px; }
}

@media (max-width: 767px) {
  .backoffice-main-title { font-size: 2rem; }
  .backoffice-main-subtitle { font-size: 0.95rem; }
  .backoffice-sub-heading { font-size: 1.5rem; }
  .backoffice-sub-description { font-size: 0.9rem; }
  .backoffice-features-list { gap: 18px; }
  .backoffice-feature-item { gap: 12px; }
  .backoffice-feature-icon-wrapper { width: 40px; height: 40px; border-radius: 10px; }
  .amenity-icon { font-size: 18px; }
  .backoffice-feature-text h4 { font-size: 1rem; }
  .backoffice-feature-text p { font-size: 0.8rem; }
  .backoffice-btn { padding: 12px 20px; font-size: 0.9rem; align-self: stretch; text-align: center;}
}

@media (max-width: 480px) {
  .backoffice-main-title { font-size: 1.8rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-17ce521 *//* ----- Import Font ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ----- Modern CSS Variables ----- */
:root {
  --pr-brand-primary: #0062FF;
  --pr-brand-secondary: #3641D7;
  --pr-brand-light: #E9F2FF;
  --pr-text-dark: #111827; /* Darker, more modern text color */
  --pr-text-medium: #4B5563;
  --pr-text-light: #6B7280;
  --pr-text-on-primary: #FFFFFF;
  --pr-card-bg: #FFFFFF;
  --pr-section-bg: #F9FAFB; /* Lighter, cleaner background */
  --pr-border-color: #E5E7EB; /* Subtle border for cards and dividers */
  --pr-border-hover-color: #D1D5DB;
}

/* ----- Global Section Styling ----- */
.pricing-section {
  font-family: 'Inter', sans-serif;
  background-color: var(--pr-section-bg);
  padding: 80px 24px;
  overflow: hidden;
}

/* ----- Section Header ----- */
.pr-section-header {
  text-align: center;
  margin: 0 auto 64px auto; /* Increased bottom margin */
  max-width: 700px;
}
.pr-tag-container {
  margin-bottom: 16px;
}
.pr-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--pr-brand-light);
  color: var(--pr-brand-primary);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
}
.pr-main-heading {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: var(--pr-text-dark);
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.025em; /* Tighter letter spacing */
}
.pr-main-heading .pr-highlight {
  color: var(--pr-brand-primary);
  /* Removed border-bottom for a cleaner look */
}
.pr-subheading {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--pr-text-medium);
  line-height: 1.6;
}

/* ----- Pricing Cards Grid ----- */
.pr-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ----- CARD STYLING (The Core of the Redesign) ----- */
.pr-pricing-card {
  background-color: var(--pr-card-bg);
  border: 1px solid var(--pr-border-color);
  border-radius: 16px;
  padding: 40px; /* Increased padding */
  display: flex;
  flex-direction: column;
  text-align: left;
  /* Softer, more modern shadow */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}
.pr-pricing-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--pr-border-hover-color);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
}

/* ----- "Most Popular" Card Styling ----- */
.pr-pricing-card.pr-most-popular {
  border: 2px solid var(--pr-brand-secondary);
  box-shadow: 0 10px 15px -3px rgba(54, 65, 215, 0.1), 0 4px 6px -4px rgba(54, 65, 215, 0.1);
  transform: scale(1.03); /* Pop it out slightly by default */
}
.pr-pricing-card.pr-most-popular:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 20px 25px -5px rgba(54, 65, 215, 0.15), 0 8px 10px -6px rgba(54, 65, 215, 0.15);
}
.pr-popular-badge {
  position: absolute;
  top: -16px; /* Position it cleanly on the border */
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--pr-brand-secondary);
  color: var(--pr-text-on-primary);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
}

/* ----- Card Content Styling ----- */
.pr-card-header {
  min-height: 90px; /* Ensures vertical alignment of prices */
}
.pr-plan-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--pr-text-dark);
  margin: 0 0 8px 0;
}
.pr-plan-description {
  font-size: 16px;
  color: var(--pr-text-medium);
  line-height: 1.5;
  margin-bottom: 24px;
}
.pr-plan-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--pr-text-dark);
  margin-bottom: 32px;
  line-height: 1;
}
.pr-plan-price .pr-price-duration {
  font-size: 16px;
  font-weight: 500;
  color: var(--pr-text-light);
  margin-left: 8px;
}

/* ----- FEATURES LIST with ICONS ----- */
.pr-features-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
  border-top: 1px solid var(--pr-border-color);
  padding-top: 32px;
}
.pr-features-list li {
  font-size: 16px;
  color: var(--pr-text-medium);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px; /* Space between icon and text */
}
.pr-features-list li:last-child {
  margin-bottom: 0;
}
.pr-feature-icon {
  width: 20px;
  height: 20px;
  color: var(--pr-brand-primary);
  flex-shrink: 0; /* Prevents icon from shrinking */
  margin-top: 2px;
}
.pr-features-list li strong {
  color: var(--pr-text-dark);
  font-weight: 600;
}
/* Style for "Everything in..." text */
.pr-feature-upgrade-title {
  color: var(--pr-text-dark) !important;
  font-weight: 600;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pr-border-color);
}
.pr-feature-upgrade-title .pr-feature-icon {
  display: none; /* Hide icon for this item */
}


/* ----- Select Button Styling ----- */
.pr-select-plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--pr-brand-primary);
  color: var(--pr-text-on-primary);
  border: 1px solid var(--pr-brand-primary);
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.25s ease;
}
.pr-select-plan-btn:hover {
  background-color: #0051CC; /* Darker blue */
  border-color: #0051CC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.15);
}
/* Style for popular card button */
.pr-pricing-card.pr-most-popular .pr-select-plan-btn {
    background-color: var(--pr-brand-secondary);
    border-color: var(--pr-brand-secondary);
}
.pr-pricing-card.pr-most-popular .pr-select-plan-btn:hover {
    background-color: #2a35b0;
    border-color: #2a35b0;
    box-shadow: 0 4px 12px rgba(54, 65, 215, 0.2);
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 1024px) {
  .pr-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px; /* Center the single column */
    margin: 0 auto;
  }
  .pr-pricing-card.pr-most-popular {
    transform: scale(1); /* Reset scale for stacked view */
  }
  .pr-pricing-card.pr-most-popular:hover {
    transform: translateY(-5px) scale(1.01); /* Standard hover for stacked view */
  }
}
@media (max-width: 767px) {
  .pricing-section { padding: 60px 20px; }
  .pr-main-heading { font-size: 30px; }
  .pr-subheading { font-size: 16px; }
  .pr-pricing-card { padding: 32px; }
  .pr-plan-price { font-size: 40px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-43c554a *//* ----- Import Font (Nafs Font) ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ----- CSS Variables ----- */
:root {
  /* Alwan l had la section */
   /* ... l ba9i dyal les variables ... */
  --cta-bg-cyan-400: #CFFAFE; /* CYAN-200 L LKHALFIA DYAL SECTION */
  --cta-text-on-cyan-bg: #083344;     /* Loun k7el/zre9 mghlou9 l lkhat foug lkhlfia Cyan (Cyan-900/950) */
  --cta-subtext-on-cyan-bg: #0E7490; /* Loun zre9/Cyan mghlou9 l subheading (Cyan-700) */
  
  --cta-button-primary-bg: #FFFFFF;        /* Lkhalfia bida l l boutona l louwla */
  --cta-button-primary-text: #005FF9;     /* Lkhat zre9 l l boutona l louwla */
  
  /* L HOVER DYAL LES BOUTOUNAT BJOOJ GHADI IKON ZRE9 FAATE7 */
  --cta-button-hover-bg-light-blue: #EBF4FF; /* Loun zre9 bared l hover background */
  --cta-button-hover-text-blue: #005FF9;    /* Loun zre9 l hover text */

  --cta-button-secondary-bg: #005FF9;      /* Lkhalfia zre9a l l boutona l tania (PAR DEFAUT) */
  --cta-button-secondary-text: #FFFFFF;    /* Lkhat byed l l boutona l tania (PAR DEFAUT) */
  
  --cta-border-radius-section: 24px;
  --cta-border-radius-button: 50px;
}

/* ----- Styling dyal Section Kamla ----- */
.cta-section {
  font-family: 'Inter', sans-serif;
  background-color: var(--cta-bg-cyan-400); /* LKHALFIA CYAN-400 */
  border-radius: var(--cta-border-radius-section);
  padding: 70px 30px;
  margin: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 30px -5px rgba(34, 211, 238, 0.25); /* Dil khfif b loun cyan */
}

.cta-content-wrapper {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.cta-main-heading {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  color: var(--cta-text-on-cyan-bg); /* Loun k7el/zre9 l lkhat */
  margin-top: 0;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.cta-subheading {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--cta-subtext-on-cyan-bg); /* Loun zre9/cyan mghlou9 */
  line-height: 1.65;
  margin-bottom: 40px;
}

.cta-buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--cta-border-radius-button);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease-out, box-shadow 0.25s ease;
  min-width: 160px;
}

/* Boutona Louwla (Book a Tour) */
.cta-button-primary {
  background-color: var(--cta-button-primary-bg); /* Lkhalfia bida */
  color: var(--cta-button-primary-text); /* Lkhat zre9 */
  box-shadow: 0 4px 10px rgba(0, 95, 249, 0.1);
}
.cta-button-primary:hover {
  background-color: var(--cta-button-hover-bg-light-blue); /* Lkhalfia tولي zre9a bareda */
  color: var(--cta-button-hover-text-blue); /* Lkhat ib9a zre9 */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 95, 249, 0.18);
}

/* Boutona Tania (Contact Us) */
.cta-button-secondary {
  background-color: var(--cta-button-secondary-bg); /* Lkhalfia zre9a primary (PAR DEFAUT) */
  color: var(--cta-button-secondary-text); /* Lkhat byed (PAR DEFAUT) */
  /* Nقدرو nزيدو border b7al lkhalfia l loun ikoun متناسق*/
  border-color: var(--cta-button-secondary-bg); 
}
.cta-button-secondary:hover {
  /* HOVER ZRE9 L FAATE7 HNA TANI */
  background-color: var(--cta-button-hover-bg-light-blue); /* Lkhalfia tولي zre9a bareda */
  color: var(--cta-button-hover-text-blue); /* Lkhat iولي zre9 */
  border-color: var(--cta-button-hover-bg-light-blue); /* Border iولي transparent اولا b nafs loun lkhlfia l hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 95, 249, 0.18); /* Nafs l shadow dyal l primary hover */
}

.cta-arrow-icon {
  margin-left: 10px;
  font-size: 1.1em;
  transition: transform 0.2s ease-out;
}
/* Melli hover 3la boutona tania, l arrow khasso itbeddel louno m3a lkhat */
.cta-button-secondary:hover .cta-arrow-icon {
  transform: translateX(3px);
  /* Loun l arrow ghadi itbeddel automatiquement m3a loun dyal lkhat dyal l parent (.cta-button-secondary) */
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 767px) { /* Mobile */
  .cta-section {
    padding: 60px 20px;
    margin: 30px 15px;
    border-radius: 20px;
  }
  .cta-main-heading {
    font-size: clamp(26px, 6vw, 34px);
  }
  .cta-subheading {
    font-size: clamp(15px, 3.5vw, 17px);
    margin-bottom: 35px;
  }
  .cta-buttons-container {
    flex-direction: column;
    gap: 15px;
  }
  .cta-button {
    width: 100%;
    padding: 15px 25px;
    font-size: 15.5px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8f60817 *//* ----- Import Font (Nafs Font) ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
/* ----- Import Font Awesome (ILA MAZAL MAKAYNACH F SITE KAMEL) ----- */
/* HADA KHASSO IKON MDAR B TARI9A SA7I7A F SITE DYALEK BACH ICONAT IBANO */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');


/* ----- CSS Variables ----- */
:root {
  --footer-bg: #FFFFFF; /* LKHALFIA BIDA */
  --footer-text-primary: #1A202C; /* Loun k7el/rmadi mghlou9 kter (tailwind slate-800) */
  --footer-text-secondary: #475569; /* Rmadi (tailwind slate-600) */
  --footer-text-muted: #94A3B8; /* Rmadi bared (tailwind slate-400) */
  
  /* Alwan dyal Logo */
  --footer-logo-ai-color: #22D3EE; /* Cyan-400 (Loun li f tsowira dyalek) */
  --footer-logo-hub-color: var(--footer-logo-ai-color); /* MODIFIED: Now uses AI color */
  --footer-logo-tagline-color: #0F766E; /* Zre9/khder mghlou9 (tailwind teal-700) */

  --footer-link-hover-cyan: #67E8F9; /* CYAN-300 L HOVER */
  --footer-border-color: #E2E8F0; /* Loun l borders (tailwind gray-300) */
  
  --footer-social-icon-bg: #F0F9FF; /* Loun lkhlfia dyal social icons (Sky-50) */
  --footer-social-icon-color: #0EA5E9; /* Loun dyal social icons (Sky-500) */
  --footer-social-icon-hover-bg: #0EA5E9;
  --footer-social-icon-hover-color: #FFFFFF;
  
  --footer-contact-icon-color: #0EA5E9; /* Sky-500 */
}

/* ----- Styling dyal Footer Kamla ----- */
.site-footer {
  font-family: 'Inter', sans-serif;
  background-color: var(--footer-bg); /* LKHALFIA BIDA */
  color: var(--footer-text-secondary);
  padding-top: 75px;
  padding-bottom: 0; 
  font-size: 15.5px;
  line-height: 1.75;
}

.footer-main-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px 30px;
  padding-bottom: 60px;
}

/* ----- Column 1: Logo, Description, Social ----- */
.footer-column-about .footer-logo {
  margin-bottom: 25px;
  /* Nقدرو n7eddo max-width l logo container ila bghina */
  /* max-width: 200px; */
}
.footer-logo-link {
  text-decoration: none;
  display: inline-block; /* Bach mayakhodch l3ord kamel ila l parent fih text-align:center */
}
.footer-logo-link .logo-main-text {
  display: block;
  font-weight: 900; /* Extra Ghlid bzaf */
  font-size: 52px; /* MODIFIED: Increased font size from 40px */
  line-height: 1.1; /* N9rbohom chwiya */
  letter-spacing: 0.02em; /* MODIFIED: Adjusted letter spacing from -1px */
}
.footer-logo-link .logo-ai {
  color: var(--footer-logo-ai-color); /* Cyan-400 */
  margin-right: 0.2em; /* MODIFIED: Added space after AI (0.2em of 52px = 10.4px) */
}
.footer-logo-link .logo-hub {
  color: var(--footer-logo-hub-color); /* Color set to match AI */
}
.footer-logo-link .logo-tagline {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--footer-logo-tagline-color); /* Zre9/Khder */
  letter-spacing: 0.2px;
  margin-top: 5px; /* MODIFIED: Espace sghir bin "AI HUB" ou tagline, increased from 2px */
}

.footer-description {
  margin-bottom: 30px;
  font-size: 15px;
  color: var(--footer-text-secondary);
}

.footer-social-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--footer-text-primary);
  margin-bottom: 16px;
}
.footer-social-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  gap: 16px;
}
.footer-social-links .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--footer-social-icon-bg);
  color: var(--footer-social-icon-color);
  font-size: 19px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease-out;
}
.footer-social-links .social-icon:hover {
  background-color: var(--footer-social-icon-hover-bg);
  color: var(--footer-social-icon-hover-color);
  transform: translateY(-3px) scale(1.08);
}

/* ----- Columns 2 & 3: Links ----- */
.footer-column-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--footer-text-primary);
  margin-top: 0;
  margin-bottom: 25px;
}
.footer-links-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-links-list li {
  margin-bottom: 15px;
}
.footer-links-list li:last-child {
  margin-bottom: 0;
}
.footer-links-list a {
  color: var(--footer-text-secondary);
  text-decoration: none; /* N7EYDO UNDERLINE PAR DEFAUT */
  transition: color 0.25s ease, padding-left 0.25s ease; /* Zedt padding-left l animation */
  position: relative;
  padding-left: 0; /* Par défaut bla padding */
  display: inline-block; /* Bach padding-left iخدم mzyan */
}
.footer-links-list a:hover {
  color: var(--footer-link-hover-cyan); /* HOVER B CYAN-300 */
  padding-left: 8px; /* Kayتحرك l limen chwiya melli hover */
}
.footer-links-list a:hover::before {
  content: "•";
  position: absolute;
  left: -5px;
  top: 50%; /* Nضبطoha عموديا */
  transform: translateY(-50%); /* Nضبطoha عموديا */
  color: var(--footer-link-hover-cyan);
  transition: opacity 0.25s ease;
  opacity: 1; /* Kayبان ghir melli hover 3la "a" */
  font-size: 1.2em; /* Nكبرو l bullet chwiya */
}


/* ----- Column 4: Contact ----- */
.footer-contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}
.footer-contact-list li:last-child {
  margin-bottom: 0;
}
.footer-contact-list .contact-icon {
  color: var(--footer-contact-icon-color);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 1px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.footer-contact-list a,
.footer-contact-list span {
  color: var(--footer-text-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-contact-list a:hover {
  color: var(--footer-link-hover-cyan);
}

/* ----- Copyright Bar ----- */
.footer-copyright-bar {
  background-color: #F1F5F9;
  padding: 25px 30px;
  text-align: center;
  font-size: 14px;
  color: var(--footer-text-muted);
  border-top: 1px solid var(--footer-border-color);
}
.footer-copyright-bar p {
  margin: 0;
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 991px) { /* Tablet */
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px 25px;
  }
  .footer-column-about {
    grid-column: span 2; /* Takhod l3ord kamel dyal jouj columns */
    text-align: center; /* Ncentriwha */
  }
  .footer-column-about .footer-logo-link {
    margin: 0 auto; /* Ncentriw logo ila kan inline-block */
  }
  .footer-column-about .footer-social-links {
    justify-content: center; /* Ncentriw social icons */
  }
}

@media (max-width: 767px) { /* Mobile */
  .site-footer {
    padding-top: 60px;
  }
  .footer-main-content {
    padding: 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr; /* Koul column f ster */
    gap: 35px;
    padding-bottom: 40px;
  }
  .footer-column {
    text-align: left; /* Nرجعو text l lissr f mobile par défaut */
    /* Nقدرو nزيدو margin-bottom l koul column f mobile bach iجي espace mzyan */
    /* margin-bottom: 20px; */
  }
  /* .footer-column:last-child { margin-bottom: 0; } */

  .footer-column-about .footer-logo-link {
    margin: 0; /* Nرجعو logo l lissr */
  }
  .footer-column-about .footer-social-links {
    justify-content: flex-start; /* Nرجعو social icons l lissr */
  }
  .footer-column-title {
    margin-bottom: 18px;
    font-size: 18px;
  }
  .footer-links-list li {
    margin-bottom: 12px;
  }
  .footer-copyright-bar {
    padding: 22px 20px;
    font-size: 13px;
  }
}/* End custom CSS */