  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-primary: #0d5c4d;
            --color-secondary: #f5f3ef;
            --color-accent: #009277; 
            --color-dark: #1a1a1a;
            --color-light: #ffffff;
            --color-gray: #6b7280;
            --color-gray-light: #f3f4f6;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--color-dark);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: var(--color-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 3px solid var(--color-accent);
        }

        header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-icon {
            font-size: 2.5rem;
            color: var(--color-primary);
            transition: transform 0.3s ease;
        }

        .logo-icon:hover {
            transform: rotate(360deg);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-primary);
            letter-spacing: -0.5px;
        }

        .brand-tagline {
            font-size: 0.85rem;
            color: var(--color-accent);
            font-weight: 500;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--color-dark);
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--color-primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--color-primary);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(13, 92, 77, 0.9) 0%, rgba(13, 92, 77, 0.7) 100%), 
                        url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?w=1920&q=80') center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--color-light);
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.1); }
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            position: relative;
            z-index: 1;
            animation: heroFadeInUp 1.2s ease-out;
        }

        @keyframes heroFadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: heroTextSlide 1.5s ease-out;
        }

        @keyframes heroTextSlide {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: var(--color-secondary);
            animation: heroTextSlide 1.5s ease-out 0.3s backwards;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--color-accent) 0%, #c99a6a 100%);
            color: var(--color-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
            animation: heroButtonPulse 2s ease-out 0.6s backwards;
        }

        @keyframes heroButtonPulse {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 25px rgba(212, 165, 116, 0.6);
        }

        /* Section Styles */
        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--color-primary);
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--color-accent);
        }

        /* Services Section */
        .services {
            background: var(--color-secondary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--color-light);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(212, 165, 116, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .service-card:hover::before {
            width: 400px;
            height: 400px;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 15px 40px rgba(13, 92, 77, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg) scale(1.2);
            color: var(--color-accent);
        }

        .service-card h3 {
            color: var(--color-primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: var(--color-gray);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        /* Destinations Section */
        .destinations {
            background: var(--color-light);
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .destination-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 350px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .destination-card:hover {
            transform: translateY(-10px) rotate(2deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .destination-card:hover img {
            transform: scale(1.2) rotate(-2deg);
        }

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(13, 92, 77, 0.95) 0%, transparent 100%);
            padding: 2rem;
            color: var(--color-light);
            transform: translateY(60%);
            transition: transform 0.4s ease;
        }

        .destination-card:hover .destination-overlay {
            transform: translateY(0);
        }

        .destination-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--color-accent);
        }

        /* About Section */
        .about {
            background: var(--color-secondary);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .about-text p {
            color: var(--color-gray);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            gap: 1rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--color-light);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-item i {
            font-size: 1.5rem;
            color: var(--color-accent);
        }

        /* Gallery Section */
        .gallery {
            background: var(--color-light);
            overflow: hidden;
        }

        .gallery-slider {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .gallery-track {
            display: flex;
            animation: scroll 30s linear infinite;
        }

        .gallery-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .gallery-item {
            flex: 0 0 25%;
            padding: 0 0.5rem;
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        /* Team Section */
        .team {
            background: var(--color-secondary);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .team-member {
            background: var(--color-light);
            border-radius: 15px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .team-member:hover {
            transform: translateY(-15px) rotateZ(-2deg);
            box-shadow: 0 15px 40px rgba(13, 92, 77, 0.2);
        }

        .team-member img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: all 0.6s ease;
        }

        .team-member:hover img {
            transform: scale(1.1);
            filter: saturate(1.2);
        }

        .team-info {
            padding: 1.5rem;
        }

        .team-info h3 {
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        .team-info .role {
            color: var(--color-accent);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-info p {
            color: var(--color-gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            background: var(--color-primary);
            color: var(--color-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--color-accent);
            transform: translateY(-5px) rotate(360deg);
        }

        /* Contact Section */
        .contact {
            background: var(--color-light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .contact-info {
            background: var(--color-primary);
            padding: 2rem;
            border-radius: 15px;
            color: var(--color-light);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--color-accent);
            margin-bottom: 0;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
        }

        .contact-item i {
            color: var(--color-accent);
            font-size: 1.5rem;
            margin-top: 0.2rem;
            transition: all 0.3s ease;
        }

        .contact-item:hover i {
            transform: scale(1.2) rotate(15deg);
        }

        .map-wrapper {
            width: 100%;
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin-top: 1rem;
        }

        #map {
            width: 100%;
            height: 100%;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            color: var(--color-primary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid var(--color-gray-light);
            border-radius: 10px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
            transform: scale(1.02);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--color-accent) 0%, #c99a6a 100%);
            color: var(--color-light);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .submit-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
        }

        /* Footer */
        footer {
            background: var(--color-dark);
            color: var(--color-light);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--color-accent);
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: var(--color-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--color-accent);
            padding-left: 5px;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 25px;
            outline: none;
        }

        .newsletter-form button {
            padding: 0.8rem 1.5rem;
            background: var(--color-accent);
            color: var(--color-light);
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--color-primary);
            transform: scale(1.05);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
        }

        .animate-fadeInUp {
            transform: translateY(60px);
        }

        .animate-fadeInUp.animated {
            transform: translateY(0);
        }

        .animate-fadeInLeft {
            transform: translateX(-60px);
        }

        .animate-fadeInLeft.animated {
            transform: translateX(0);
        }

        .animate-fadeInRight {
            transform: translateX(60px);
        }

        .animate-fadeInRight.animated {
            transform: translateX(0);
        }

        .animate-scaleIn {
            transform: scale(0.8);
        }

        .animate-scaleIn.animated {
            transform: scale(1);
        }

        .animate-rotateIn {
            transform: rotate(-10deg) scale(0.8);
        }

        .animate-rotateIn.animated {
            transform: rotate(0) scale(1);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            
            .destinations-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: var(--color-light);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                gap: 0;
            }

            .nav-links li {
                padding: 1rem 0;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero {
                height: 80vh;
                margin-top: 70px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .gallery-item {
                flex: 0 0 50%;
            }

            .brand-name {
                font-size: 1.3rem;
            }

            .brand-tagline {
                font-size: 0.7rem;
            }

            .section-title {
                font-size: 2rem;
            }

            section {
                padding: 3rem 0;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .destinations-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .logo-icon {
                font-size: 2rem;
            }

            .brand-name {
                font-size: 1.1rem;
            }

            .brand-tagline {
                font-size: 0.6rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .gallery-item {
                flex: 0 0 100%;
            }

            .destination-card {
                height: 250px;
            }
        }