:root {
  /* Colors */
  --color-white: #f4f4f5;
  --color-black: #231f20;
  --color-gray: #c2c2bf;
  --color-dark: #2c3337;
  --color-blue: #249cd1;
  --color-yellow: #eec21b;
  --color-blue-light: #4dc3f7;
  --color-blue-dark: #1b7ca8;
  --color-yellow-light: #f3eac8;
  --color-yellow-dark: #cba715;
  --color-border: rgba(0, 0, 0, 0.1);
  --color-shadow: rgba(0, 0, 0, 0.15);

  /* Font Sizes */
  --font-s-small: 0.7rem;
  --font-s-medium: 0.9rem;
  --font-s-normal: 1.1rem;
  --font-s-large: 1.4rem;
  --font-s-gigantte: 1.8rem;

  /* Fonts */
  --fonts-nav: font-nav;
  --fonts-italic: font-italic;
  --fonts-text: font-text;
  --fonts-title: font-title;
  --fonts-subtitle: font-subtitle;
  --fonts-navigation: font-navigation;

  /* Max Width */
  --mx-width: 1200px;

  /* Letter Spacing */
  --letter-spacing-shore: 0.73px;
  --letter-spacing-medium: 1.1px;
  --letter-spacing-large: 1.5px;

  /* Spacing */
  --space-s: 1rem;
  --space-m: 1.5rem;
  --space-l: 2rem;

  /* Border Radius */
  --radius-small: 5px;
  --radius-medium: 10px;
  --radius-large: 20px;

  /* Shadows */
  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
  --box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;

  /* Transitions */
  --transition-normal: 0.3s ease-in-out;

  /* Line Height */
  --line-height-normal: 1.5;

  /* Z-index */
  --z-header: 1000;
  --z-modal: 2000;
}

/* -----------------------------
   Global Reset & Layout
------------------------------ */
/* Prevent horizontal scroll globally */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden; /* Hides horizontal scroll */
  width: 100%;
}


html, body {
  margin: 0;
  padding: 0;
  font-family: var(--fonts-text), sans-serif;
  color: var(--color-dark);
  background-color: var(--color-white);
  box-sizing: border-box;
}

body {
  width: 100%;
}

.main_general {
  width: 100%;
  padding: 0;
}

/* -----------------------------
   Hero / Intro Section
------------------------------ */
.sicgbor_hero_banner,
.social-hero {
  width: 100%;
  background-color: var(--color-yellow-light);
  padding: var(--space-l) var(--space-m);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sicgbor_hero_content,
.social-hero-content {
  max-width: var(--mx-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-l);
}

.social-hero-text,
.sicgbor_hero_content .sicgbor_hero_content {
  flex: 1 1 500px;
}

.social-hero-img,
.sicgbor_hero_content img {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
}

.hero-title {
  font-size: var(--font-s-gigantte);
  margin-bottom: var(--space-s);
  font-family: var(--fonts-title);
}

.hero-desc,
.hero-sub,
.sicgbor_services_texts {
  font-size: var(--font-s-normal);
  margin-bottom: var(--space-s);
  line-height: var(--line-height-normal);
}

/* Buttons */
.sicgbor_btn_send,
.package-btn {
  display: inline-block;
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-medium);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition-normal);
  text-align: center;
  cursor: pointer;
}

.sicgbor_btn_send:hover,
.package-btn:hover {
  background-color: var(--color-blue-dark);
}

/* -----------------------------
   Packages Section
------------------------------ */
.packages-section {
  width: 100%;
  padding: var(--space-l) var(--space-m);
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: var(--font-s-gigantte);
  margin-bottom: var(--space-s);
  text-align: center;
}

.section-subtitle {
  font-size: var(--font-s-large);
  margin-bottom: var(--space-l);
  text-align: center;
  color: var(--color-dark);
}

/* Packages Grid */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-l);
  justify-content: center;
  width: 100%;
}

/* Package Cards */
.package-card {
  background-color: var(--color-white);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  padding: var(--space-m);
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  text-align: center;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-light);
}

/* Package Label / Stars */
.package-label {
  font-size: var(--font-s-large);
  font-family: var(--fonts-title);
  color: var(--color-yellow);
  margin-bottom: var(--space-s);
}

/* Titles and Descriptions */
.package-title {
  font-size: var(--font-s-large);
  color: var(--color-blue);
  letter-spacing: var(--letter-spacing-shore);
  margin-bottom: 0.5rem;
}

.package-subtitle {
  font-size: var(--font-s-normal);
  color: var(--color-gray);
  margin-bottom: var(--space-s);
}

.package-desc {
  font-size: var(--font-s-normal);
  margin-bottom: var(--space-s);
}

.package-price {
  font-size: var(--font-s-large);
  font-weight: bold;
  margin-bottom: var(--space-s);
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-m);
}

.package-features li {
    position: relative;
    padding-left: 18px; /* smaller space for checkmark */
    margin-bottom: 10px;
}

.package-features li::before {
    content: "✓"; 
    position: absolute;
    left: 0; /* closer to text */
    color: var(--color-yellow-dark); 
    font-weight: bold;
}


/* Package Button */
.package-btn {
  margin-top: auto;
}



/* -----------------------------
   Contact Form
------------------------------ */
.sicgbor_main_form {
  max-width: var(--mx-width);
  margin: 0 auto;
  padding: var(--space-l) var(--space-m);
}

.icon_form {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.input_icon_wrap {
  position: relative;
}

.input_icon_wrap i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray);
}

.input_icon_wrap input,
.input_icon_wrap textarea {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  letter-spacing: var(--letter-spacing-shore);
  font-family: var(--fonts-text);
  font-size: var(--font-s-normal);
  outline: none;
  resize: none;
}

.input_icon_wrap.textarea textarea {
  padding-top: 1rem;
}

/* Success / Error */
.form-success {
  color: green;
  margin-top: var(--space-s);
}
.form-error {
  color: red;
  margin-top: var(--space-s);
}

/* -----------------------------
   Responsive
------------------------------ */
@media (max-width: 1024px) {
  .social-hero-content,
  .sicgbor_hero_content {
    flex-direction: column;
    text-align: center;
  }

  .social-hero-img,
  .sicgbor_hero_content img {
    margin-top: var(--space-m);
  }
}

@media (max-width: 768px) {
  .packages-grid {
    flex-direction: column;
    align-items: center;
  }

  .package-card {
    max-width: 90%;
  }
}


.packages-section .package-features {
    list-style: none; /* remove default bullets */
    padding: 0;
    margin: 0;
}

.packages-section .package-features li {
    position: relative;
    padding-left: 20px; /* space for the checkmark */
    margin-bottom: 8px;
    font-size: var(--font-s-normal);
    line-height: 1.4;
    text-align: left; /* ensure text is left-aligned */
}

.packages-section .package-features li::before {
    content: "\f00c"; /* FontAwesome check */
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; /* solid icon */
    position: absolute;
    left: 0; /* position checkmark at the start */
    top: 2px; /* vertically align with text */
    color: var(--color-blue);
    font-size: 1em;
    line-height: 1;
}
.packages-section .package-features li {
    position: relative;
    padding-left: 30px; /* increase this slightly to add space */
    margin-bottom: 8px;
    font-size: var(--font-s-normal);
    line-height: 1.4;
    text-align: left;
}

.packages-section .package-features li::before {
    content: "\f00c"; /* FontAwesome check */
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-blue);
    font-size: 1em;
    line-height: 1;
}


/* ==========================
   CONTACT FORM STYLING - NO BACKGROUND, BOX-SHADOW, BORDERS
=========================== */
.sicgbor_main_form {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background-color: transparent; /* No background */
}

.sicgbor_main_form .form-container {
    max-width: 700px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* Box-shadow */
    transition: 0.3s;
}

.sicgbor_main_form .form-container:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.sicgbor_main_form h2 {
    font-size: var(--font-xl);
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 15px;
}

.sicgbor_main_form .form-description {
    text-align: center;
    color: var(--color-gray-dark);
    font-size: var(--font-s);
    margin-bottom: 30px;
    line-height: 1.6;
}

.icon_form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input_icon_wrap {
    position: relative;
}

.input_icon_wrap i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-yellow-dark);
    font-size: 1.2rem;
}

.input_icon_wrap input,
.input_icon_wrap textarea {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 2px solid var(--color-gray-light); /* Add border */
    border-radius: 10px; /* Slightly rounded inputs */
    font-size: var(--font-s);
    outline: none;
    transition: 0.3s;
    background-color: #fff; /* Keep input background white */
}

.input_icon_wrap input:focus,
.input_icon_wrap textarea:focus {
    border-color: var(--color-blue); /* Highlight on focus */
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.input_icon_wrap.textarea textarea {
    resize: none;
}

.sicgbor_btn_send {
    background-color: var(--color-blue);
    color: #fff;
    font-size: var(--font-s);
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.sicgbor_btn_send:hover {
    background-color: #0056b3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.form-success,
.form-error {
    margin-top: 20px;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-success {
    background-color: #d4edda;
    color: #155724;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
    .sicgbor_main_form {
        padding: 40px 15px;
    }

    .sicgbor_main_form .form-container {
        padding: 30px 20px;
    }
}


.input_icon_wrap.textarea {
    position: relative;
}

.input_icon_wrap.textarea i {
    position: absolute;
    top: 20px;       /* position near the top */
    left: 10px;      /* same as input padding-left */
    font-size: 1.2rem;
    color: var(--color-yellow-dark);
}

.input_icon_wrap.textarea textarea {
    padding: 30px 15px 10px 45px; /* top padding to make room for icon */
    border: 2px solid var(--color-gray-light);
    border-radius: 10px;
    width: 100%;
    font-size: var(--font-s);
    outline: none;
    resize: none;
    transition: 0.3s;
}

.input_icon_wrap.textarea textarea:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}
