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

        /* System Font Stack - No external font requests */
        @font-face {
            font-family: 'System Font';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: local('.SFNSText-Regular'), local('.HelveticaNeueDeskInterface-Regular'), local('.LucidaGrandeUI'), 
                 local('Ubuntu Regular'), local('Segoe UI'), local('Roboto'), 
                 local('DroidSans'), local('Source Sans Pro'), sans-serif;
        }

        :root {
            --primary: #cf3227;
            --secondary: #4f6982;
            --primary-dark: #a5271a;
            --accent: #f7ad7c;
            --white: #ffffff;
            --light-bg: #f8fafc;
            --dark-text: #1a1a1a;
            --light-text: #6b7280;
            --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--dark-text);
        }

        /* Navigation */
        nav {
            background: var(--white);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

         /* Logo Container */
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: opacity 0.3s ease;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
        }

        .logo:hover {
            opacity: 0.9;
        }

        /* Logo Image */
        .logo-image {
            width: 65px;
            height: 65px;
            object-fit: contain;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .logo:hover .logo-image {
            transform: scale(1.05);
        }

        /* Logo Text */
        .logo-text {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary);
            letter-spacing: -0.5px;
            white-space: nowrap;
            line-height: 1;
        }

        .logo-text .highlight {
            color: var(--primary);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .logo-image {
                width: 50px;
                height: 50px;
            }

            .logo-text {
                font-size: 1.4rem;
            }
            
            .logo {
                gap: 12px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                gap: 10px;
            }

            .logo-image {
                width: 45px;
                height: 45px;
            }

            .logo-text {
                font-size: 1.2rem;
            }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(207, 50, 39, 0.9) 0%, rgba(165, 39, 26, 0.9) 100%);
            color: var(--white);
            padding: 120px 2rem 80px;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .hero-image {
            width: 100%;
            height: 300px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .hero-content {
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-image-right {
            width: 100%;
            height: 300px;
            border-radius: 15px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--white);
            color: var(--primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Sections */
        section {
            padding: 80px 2rem;
            max-width: 100%;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark-text);
        }

        .section-subtitle {
            text-align: center;
            color: var(--light-text);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

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

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            line-height: 1.8;
            color: var(--light-text);
            font-size: 1.1rem;
        }

        /* Core Values */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .value-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(207, 50, 39, 0.15);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        .value-card h3 {
            margin-bottom: 1rem;
            color: var(--dark-text);
        }

        /* Services */
        .services {
            background: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(207, 50, 39, 0.15);
        }

        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-content {
            padding: 2rem;
        }

        .service-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* Featured Packages Section */
        #packages {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            color: var(--secondary);
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        /* Grid Layout */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        /* Package Cards */
        .package-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            display: flex;
            flex-direction: column;
        }

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

        /* Image Container */
        .package-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 260px;
        }

        .package-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .package-card:hover .package-image {
            transform: scale(1.1);
        }

        /* Featured Badge */
        .package-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--primary);
            color: var(--white);
            padding: 8px 45px;
            font-size: 0.75rem;
            font-weight: bold;
            letter-spacing: 1px;
            transform: rotate(45deg);
            z-index: 10;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        /* Duration Badge */
        .package-duration {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--secondary);
            padding: 8px 16px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            z-index: 5;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        /* Package Content */
        .package-content {
            padding: 2rem 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        .package-header h3 {
            font-size: 1.4rem;
            color: var(--secondary);
            line-height: 1.4;
            font-weight: 700;
        }

        /* Package Footer */
        .package-footer {
            padding: 0 1.5rem 2rem;
        }

        /* Book Button */
        .btn-book {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            text-align: center;
            box-shadow: 0 4px 15px rgba(212, 119, 44, 0.3);
            letter-spacing: 0.5px;
        }

        .btn-book:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 119, 44, 0.4);
        }

        .btn-book:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            #packages {
                padding: 3rem 1rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .packages-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .package-image-wrapper {
                height: 220px;
            }

            .package-header h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .package-duration {
                font-size: 0.8rem;
                padding: 6px 12px;
            }

            .package-header h3 {
                font-size: 1.1rem;
            }
        }
        /* CTA */
        .cta {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: var(--white);
            text-align: center;
            padding: 100px 2rem;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta .btn {
            background: var(--white);
            color: var(--primary);
            margin-top: 1rem;
        }

        /* Contact */
        .contact {
            padding: 3rem 2rem;
            background: var(--light-bg);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            align-items: stretch;
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.95));
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(15,23,42,0.06);
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-info {
            padding: 0.5rem 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 10px;
            color: #fff;
            box-shadow: 0 6px 18px rgba(15,23,42,0.08);
            flex-shrink: 0;
            font-size: 1.3rem;
        }

        .contact-details h3 {
            font-size: 1rem;
            margin: 0 0 6px;
            color: var(--primary);
        }

        .contact-details p {
            margin: 0;
            color: var(--light-text);
            font-size: 0.95rem;
        }

        .contact-details a {
            color: var(--primary);
            text-decoration: none;
        }

        .contact-details a:hover {
            text-decoration: underline;
        }

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

        .social-links h3 {
            margin: 10px 0 8px;
            color: var(--primary);
            font-size: 1rem;
        }

        .social-icons {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .social-icons a {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.04);
            border-radius: 8px;
            color: var(--dark-text);
            transition: all 0.18s;
        }

        .social-icons a:hover {
            transform: translateY(-4px);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: #fff;
        }

        .social-icons img {
            height: 20px;
            width: auto;
        }

        .contact-map {
            min-height: 400px;
            height: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: inset 0 0 0 1px rgba(15,23,42,0.03);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: 0;
            display: block;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #ffffff;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            color: var(--accent);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }

        .footer-column h4 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .footer-desc {
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: #9ca3af;
            margin: 0;
        }

        .footer-credit {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-credit a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

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

        .footer-credit img {
            display: inline-block;
            vertical-align: middle;
        }

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

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
            }

            .hero-image,
            .hero-image-right {
                display: none;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-map {
                min-height: 300px;
            }

            .contact-map iframe {
                min-height: 300px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                left: 0;
                top: 60px;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                text-align: center;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 2rem 0;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            section {
                padding: 60px 1.5rem;
            }

            .values-grid,
            .services-grid,
            .packages-grid {
                grid-template-columns: 1fr;
            }

            .service-image {
                height: 140px;
                max-width: 280px;
                width: 100%;
                margin: 0 auto;
            }

            .package-image {
                height: 140px;
            }

            /* Disable animations on mobile to improve performance */
            * {
                animation: none !important;
                transition: none !important;
            }

            /* Re-enable only critical transitions */
            .nav-links {
                transition: transform 0.3s ease !important;
            }

            .nav-menu {
                transition: transform 0.3s ease !important;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}