* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #14b8a6;
    --secondary: #3b82f6;
    --accent: #f97316;
    --dark: #1f2937;
    --light: #f3f4f6;
    --white: #ffffff;
    --gray: #f9fafb;
    --text: #374151;
    --border: #e5e7eb;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 100%;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.header.sticky {
    position: sticky;
    top: 0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 2rem;
    color: var(--primary);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0;
}

.logo-text p {
    font-size: 0.7rem;
    color: var(--primary);
    margin: 0;
    letter-spacing: 0.5px;
}

.nav-main {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    background: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
    position: relative;
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-item:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    font-size: 1.5rem;
    color: var(--dark);
}

@media (max-width: 768px) {
    .nav-main {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-main.active {
        max-height: 500px;
    }

    .nav-item {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border);
        text-align: left;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

/* Sections */
.page {
    display: none;
}

.page.active {
    display: block;
}

.section {
    padding: 60px 0;
}

.section.bg-white {
    background-color: var(--white);
}

.section.bg-gray {
    background-color: var(--gray);
}

.section.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Hero */
.hero, .hero-small {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
}

.hero {
    min-height: 600px;
    padding: 100px 0;
}

.hero-small {
    min-height: 400px;
    padding: 80px 0;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p, .hero-small p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-small h1 {
    font-size: 2.5rem;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--light);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--accent);
    color: var(--white);
}

.btn-light:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.link-btn {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.link-btn:hover {
    gap: 8px;
}

/* Typography */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

/* Grids */
.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 0;
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}





.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Cards */
.service-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s;
    background-color: var(--white);
}

.service-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    color: var(--text);
    font-size: 0.95rem;
}

/* Why Choose Us Cards */
.why-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 12px;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

/* Package Cards */


.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Service Detail Cards */
.service-detail-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-detail-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.sd-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.service-detail-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.service-detail-card p {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Gallery */


/* Filters */
.filter-buttons, .gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid var(--primary);
    background-color: var(--white);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.filter-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.about-image {
    min-height: 400px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text);
    font-size: 0.95rem;
}

.mission-card {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.trust-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.trust-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 15px;
}

/* Contact Page */
.contact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 15px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-card p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.8;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-container h2 {
    margin-bottom: 30px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.map-container h2 {
    margin-bottom: 20px;
    color: var(--dark);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--light);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: #ccc;
}

.map-placeholder p {
    color: var(--text);
    font-size: 1rem;
}

.map-placeholder small {
    color: #999;
    font-size: 0.85rem;
}

.emergency-box {
    background-color: var(--light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.emergency-box h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.emergency-box p {
    margin-bottom: 20px;
    color: var(--text);
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-section a {
    color: #d1d5db;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary);
}

.footer-logo h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.2rem;
}

.footer-logo p {
    color: var(--primary);
    margin: 0;
    font-size: 0.7rem;
}

.footer-section p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.contact-list i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid-4,
    .services-grid-3,
    

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        min-height: 300px;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-small h1 {
        font-size: 1.8rem;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .service-card {
        padding: 20px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }

    .hero, .hero-small {
        background-attachment: scroll;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .gallery-item {
        height: 200px;
    }

    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .services-grid-4,
    .services-grid-3,
   
    .contact-info-grid,
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 30px 0;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item {
        height: 150px;
    }

    .filter-buttons,
    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}
/* GRID */
.packages-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 260px));
    gap: 25px;
    justify-content: center;
}

/* CARD */
.package-card {
    background: #fff;
    width: 260px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.package-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* BADGE */
.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ff8a00;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* CONTENT */
.package-content {
    padding: 16px;
}

.package-content h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

/* META */
.meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
    margin: 8px 0;
}

/* PRICE */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #0bbfa2;
}

/* MODAL */
.tour-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.tour-modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  max-width: 650px;
  width: 90%;
  padding: 25px;
  border-radius: 18px;
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 22px;
  cursor: pointer;
}

.price-big {
    font-size: 26px;
    font-weight: 700;
    color: #0bbfa2;
}

/* MOBILE */
@media (max-width: 768px) {
    .packages-grid-3 {
        grid-template-columns: repeat(1, 260px);
    }
}
.view {
    font-size: 14px;
    color: #0bbfa2;
    font-weight: 600;
}

.sub {
    color: #666;
    margin-bottom: 15px;
}

.cta-row {
    text-align: center;
    margin-top: 25px;
}

.btn-primary {
    background: #0bbfa2;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}
.sub {
    color: #666;
    margin-bottom: 15px;
}

.view {
    font-size: 14px;
    font-weight: 600;
    color: #0bbfa2;
}

.cta-row {
    text-align: center;
    margin-top: 25px;
}

.btn-primary {
    background: #0bbfa2;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}
.packages-grid-3 {
  display: grid;
  grid-template-columns: repeat(4, 300px); /* FIXED WIDTH */
  gap: 25px;
  justify-content: center;
}

.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.package-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff8a00;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

.package-content {
  padding: 18px;
}

.meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #777;
  margin: 10px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #0bbfa2;
}

/* MODAL */




.page {
    scroll-margin-top: 100px;
}
