:root {
      --primary-color: #0075ad;
      --secondary-color: #5aadf1;
      --accent-color: #f4e9d8;
      --dark-color: #0a2f96;
      --light-color: #faf8f5;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Lato', sans-serif;
      color: var(--dark-color);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Playfair Display', serif;
    }

    /* Navbar Styles */
    .navbar {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 1rem 0;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 0.5rem 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary-color) !important;
      letter-spacing: 1px;
    }

    .nav-link {
      color: #666 !important;
      font-weight: 700;
      margin: 0 0.5rem;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-link:hover {
      color: var(--primary-color) !important;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      background-color: var(--primary-color);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-link:hover::after {
      width: 80%;
    }

    /* Hero Section */
    .hero-section {
      position: relative;
      height: 100vh;
      background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('../images/co-1.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    .hero-content {
      z-index: 2;
      animation: fadeInUp 1s ease-out;
    }

    .hero-content h1 {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-content p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .btn-primary-custom {
      background-color: var(--primary-color);
      border: 2px solid var(--primary-color);
      color: white;
      padding: 12px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary-custom:hover {
      background-color: transparent;
      color: white;
      border-color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .btn-outline-custom {
      background-color: transparent;
      border: 2px solid white;
      color: white;
      padding: 12px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      margin-left: 1rem;
    }

    .btn-outline-custom:hover {
      background-color: white;
      color: var(--primary-color);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    /* Section Styles */
    section {
      padding: 60px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 3px;
      background-color: var(--secondary-color);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .section-title p {
      color: #666;
      font-size: 1.1rem;
      margin-top: 1.5rem;
    }

    /* About Section */
    .about-section {
      background-color: var(--light-color);
    }

    .feature-card {
      text-align: center;
      padding: 2rem;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .feature-card i {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
    }

    .feature-card h4 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--dark-color);
    }

    .feature-card p {
      color: #666;
      line-height: 1.6;
    }

    /* Gallery Section */
    .gallery-section {
      background-color: white;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 30px;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(139, 111, 71, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay i {
      font-size: 3rem;
      color: white;
    }

    /* Packages Section */
    .packages-section {
      background-color: var(--light-color);
    }

    .package-card {
      background: white;
      border-radius: 10px;
      padding: 2.5rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
      text-align: center;
    }

    .package-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .package-card.featured {
      border: 3px solid var(--primary-color);
      transform: scale(1.05);
    }

    .package-header {
      margin-bottom: 1.5rem;
    }

    .package-header h3 {
      font-size: 1.8rem;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
    }

    .package-price {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 0.5rem;
    }

    .package-price span {
      font-size: 1rem;
      color: #666;
      font-weight: 400;
    }

    .package-features {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
      text-align: left;
    }

    .package-features li {
      padding: 0.75rem 0;
      border-bottom: 1px solid #eee;
      color: #666;
    }

    .package-features li i {
      color: var(--primary-color);
      margin-right: 0.5rem;
    }

    .package-features li:last-child {
      border-bottom: none;
    }

    /* Contact Section */
    .contact-section {
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      color: white;
    }

    .contact-section .section-title h2,
    .contact-section .section-title p {
      color: white;
    }

    .contact-info {
      background: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 10px;
      backdrop-filter: blur(10px);
      margin-bottom: 2rem;
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .contact-info-item i {
      font-size: 2rem;
      margin-right: 1.5rem;
      color: white;
    }

    .contact-info-item div h5 {
      margin-bottom: 0.3rem;
      font-size: 1.2rem;
    }

    .contact-info-item div p {
      margin: 0;
      opacity: 0.9;
    }

    .contact-form {
      background: white;
      padding: 2.5rem;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .contact-form h3 {
      color: var(--primary-color);
      margin-bottom: 1.5rem;
    }

    .form-control {
      padding: 12px 15px;
      border: 2px solid #eee;
      border-radius: 5px;
      margin-bottom: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: none;
    }

    .btn-submit {
      background-color: var(--primary-color);
      border: none;
      color: white;
      padding: 12px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 5px;
      transition: all 0.3s ease;
      width: 100%;
    }

    .btn-submit:hover {
      background-color: var(--dark-color);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Footer */
    .footer {
      background-color: var(--dark-color);
      color: white;
      padding: 3rem 0 1.5rem;
    }

    .footer h5 {
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }

    .footer p,
    .footer a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      line-height: 2;
    }

    .footer a:hover {
      color: var(--secondary-color);
    }

    .social-links {
      margin-top: 1rem;
    }

    .social-links a {
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      margin-right: 0.5rem;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--primary-color);
      color: white;
      transform: translateY(-3px);
    }

    .footer-bottom {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.5rem;
      }

      .hero-content p {
        font-size: 1.2rem;
      }

      .btn-outline-custom {
        margin-left: 0;
        margin-top: 1rem;
      }

      section {
        padding: 60px 0;
      }

      .package-card.featured {
        transform: scale(1);
      }
    }