:root {
    --primary: #ffc900c7;
    --primary-transparent: #d7bc35;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Comfortaa", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: white;
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  /* Layout */
  .flex { display: flex; }
  .flex-row { flex-direction: row; }
  .flex-col { flex-direction: column; }
  .justify-center { justify-content: center; }
  .justify-start { justify-content: flex-start; }
  .justify-between { justify-content: space-between; }
  .items-center { align-items: center; }
  
  /* Spacing */
  .m-0 { margin: 0; }
  .p-0 { padding: 0; }
  .m-4 { margin: 4px; }
  .p-4 { padding: 4px; }
  .m-8 { margin: 8px; }
  .p-8 { padding: 8px; }
  .m-16 { margin: 16px; }
  .p-16 { padding: 16px; }
  .mt-10 { margin-top: 10px; }
  .mt-15 { margin-top: 15px; }
  .mt-20 { margin-top: 20px; }
  
  /* Sizing */
  .w-full { width: 100%; }
  .h-full { height: 100%; }
  .max-w-screen { max-width: 100vw; }
  
  /* Typography */
  .weight-800 { font-weight: 800; }
  .font-bold { font-weight: bold; }
  .uppercase { text-transform: uppercase; }
  .text-center { text-align: center; }
  .text-left { text-align: left; }
  .text-right { text-align: right; }
  .text-12 { font-size: 12px; }
  .text-16 { font-size: 16px; }
  .text-24 { font-size: 24px; }
  .text-35 { font-size: 35px; }
  .text-45 { font-size: 45px; }
  
  /* Colors */
  .bg-white { background-color: white; }
  .bg-blue { background-color: var(--primary); }
  .text-white { color: white; }
  .text-blue { color: var(--primary); }
  .text-primary { color: var(--primary); }
  
  /* Borders */
  .border { border: 1px solid #ccc; }
  .rounded { border-radius: 4px; }
  
  /* Display */
  .block { display: block; }
  .inline-block { display: inline-block; }
  .hidden { display: none; }
  
  /* Position */
  .relative { position: relative; }
  .absolute { position: absolute; }
  
  /* Header */
  #section-1 {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 9999;
  }
  #section-1.shadow { box-shadow: 1px 1px 8px 1px lightgray; }
  
  .logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    line-height: 1.3;
  }
  .logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
  .header-container {
    margin-inline: 8%;
    padding-block: 10px;
  }
  .link-no-styling {
    text-decoration: none;
    color: black;
    font-weight: 300;
  }
  .menus {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
  }
  .menu-item { font-size: 14px; }
  .menu-item.active { color: #dba000; }
  
  /* Sections */
  .section-2 {
    background-color: #fff;
    padding-inline: 7%;
    display: flex;
    position: relative;
  }
  .section-2-left-container {
    padding-inline: 20px;
  }
  .section-2-left-container .title {
    font-size: 40px;
  }
  .section-2-right-container {
    padding-inline: 20px;
    position: absolute;
    top: -20px;
    right: 0;
  }
  .section-2-right-container img { height: 360px; }
  
  .title-emoji { font-size: 45px; }
  .stop-barrier-img {
    height: 150px;
    object-fit: contain;
  }
  
  .features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding-inline: 8%;
    margin-top: 20px;
    column-gap: 10px;
    row-gap: 10px;
  }
  .feature-card {
    border: 2px solid #d7bc35;
    background: #ffc900c7;
    border-radius: 100px;
    width: fit-content;
    padding: 5px;
    display: flex;
    align-items: center;
  }
  .feature-card i {
    margin-right: 10px;
    padding: 10px;
    border-radius: 100px;
    background-color: #ffffff75;
  }
  .feature-card span {
    font-weight: 600;
    font-size: 16px;
    color: black;
    margin-right: 10px;
  }
  
  .bg-black-container { background-color: black; }
  .main-text {
    font-size: 80px;
    text-align: center;
    line-height: 0.8;
  }
  .subtitle {
    font-size: 55px;
    margin-top: 10px;
    padding-inline: 8%;
    text-align: start;
    color: white;
  }
  .join-btn {
    outline: none;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    width: fit-content;
    background: var(--primary);
    padding: 10px 20px;
    height: 48px;
    border-radius: 6px;
    cursor: pointer;
  }
  .btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
  }
  
  /* Section 3 */
  .section-3 {
    padding: 5% 10%;
    background-color: #f4f4f4;
  }
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
  }
  .service-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  .service-icon {
    height: 100px;
    width: 140px;
    max-width: 150px;
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
    object-fit: contain;
  }
  .service-card p { min-height: 80px; }
  .book-now-btn {
    margin-top: 10px;
    padding: 10px 20px;
    width: 100%;
    font-weight: bold;
    color: black;
    background: #ffc900c7;
    border: 2px solid #d7bc35;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .book-now-btn:hover {
    background-color: black;
    color: white;
  }
  
  /* Section 4 */
  .section-4 {
    background-color: white;
    padding: 5% 10%;
  }
  .section-4-main-text {
    font-size: 48px;
    text-align: center;
    line-height: 0.9;
    font-family: 'Berkshire Swash', cursive;
  }
  .images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
  }
  .service-image {
    height: 300px;
    width: 200px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  /* Footer */
  .footer {
    background-color: black;
    color: white;
    padding: 40px 10%;
    margin-top: 0;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-section {
    flex: 1;
    min-width: 200px;
  }
  .footer-section h3,
  .footer-section h4 {
    margin-bottom: 15px;
    color: var(--primary);
  }
  .footer-section p { margin-bottom: 10px; }
  .footer-section ul { list-style: none; padding: 0; }
  .footer-section ul li { margin-bottom: 10px; }
  .footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-section ul li a:hover { color: var(--primary); }
  .social-links { display: flex; gap: 15px; }
  .social-link {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
  }
  .social-link:hover { color: var(--primary); }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #555;
    padding-top: 20px;
    font-size: 14px;
  }
  
  /* Forms */
  #map {
    height: calc(100vh - 120px);
    width: 100%;
  }
  .form-section {
    margin: 20px;
    margin-left: 7%;
    margin-right: 7%;
    display: flex;
    place-content: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 1px 1px 11px 3px #f3f3f3;
  }
  .form-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  .form-section-left { width: 50%; height: 100%; }
  .form-section-right { width: 100%; padding: 20px; }
  .service-form { margin-block: 40px; }
  .grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
  }
  input, select, textarea {
    outline: none;
    border: 0;
    border-radius: 8px;
    padding-inline: 10px;
    box-shadow: 1px 1px 6px 1px #f0f0f0;
  }
  input, select { height: 43px; }
  textarea {
    margin-top: 2px;
    padding-block: 10px;
  }
  input:hover,
  select:hover,
  textarea:hover { border: 1px solid var(--primary); }
  
  .contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    line-height: 2.5;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .form-group { margin-bottom: 20px; }
  label {
    display: block;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 2px;
  }
  .submit-btn {
    border: 2px solid #d7bc35;
    background: #ffc900c7;
    border-radius: 12px;
    width: 100%;
    max-width: 50%;
    margin: 20px auto 0;
    padding: 10px;
    font-size: 18px;
    font-weight: 800;
    font-family: "Comfortaa", sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: center;
    transition: 0.5s all;
  }
  .submit-btn:hover {
    background-color: black;
    color: white;
    border-color: #555;
  }
  
  /* Responsive */
  @media (max-width: 1150px) {
    .section-2-right-container { top: 0; }
    .section-2-right-container img { height: 300px; }
  }
  @media (max-width: 1000px) {
    .section-2-right-container { top: 20px; }
    .section-2-right-container img { height: 250px; }
  }
  @media (max-width: 930px) {
    .section-2-right-container { display: none; }
  }
  @media (max-width: 768px) {
    .header-container { margin-inline: 5%; flex-direction: column; gap: 15px; }
    .menus { justify-content: center; column-gap: 15px; flex-direction: column; gap: 10px; }
    .main-text { font-size: 60px; }
    .section-3, .section-4 { padding-inline: 5%; }
    .services-container { grid-template-columns: 1fr; }
    .images-container { flex-direction: column; align-items: center; }
    .footer-container { flex-direction: column; text-align: center; }
    .social-links { justify-content: center; }
    .section-2-left-container { display: flex; flex-direction: column; align-items: center; }
    .section-2-left-container .main-text { line-height: 1; }
    .form-section h2 { font-size: 28px; }
  }
  @media (max-width: 480px) {
    .main-text { font-size: 40px; }
    .subtitle { font-size: 16px; }
    .join-btn { font-size: 12px; padding-inline: 15px; }
    .service-card { padding: 15px; }
    .service-icon { font-size: 36px; }
    .section-4-main-text { font-size: 36px; }
    .service-image { width: 150px; height: 200px; }
    .footer { padding: 20px 5%; }
  }
  @media screen and (max-width: 950px) {
    .form-section { flex-direction: column; }
    .form-section-left, .form-section-right { width: 100%; }
    #map { height: 500px; }
  }
  @media screen and (max-width: 650px) {
    .form-section { flex-direction: column; }
    .form-section-left, .form-section-right { width: 100%; padding: 0; }
    #map { height: 300px; }
  }
  