:root {
            --primary-color: #1ba9e1;
            --secondary-color: #005f87;
            --accent-color: #ff7e00;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --text-color: #333;
            --text-light: #6c757d;
            --white: #fff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f5f5f5;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            color: var(--dark-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .site-header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            cursor: pointer;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        
        .main-nav li {
            margin-left: 30px;
        }
        
        .main-nav a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            cursor: pointer;
        }
        
        .main-nav a:hover {
            color: var(--primary-color);
        }
        
        .main-nav a.active {
            color: var(--primary-color);
        }
        
        .main-nav a.active:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
        }
        
        /* Content Sections */
        .content-section {
            display: none;
        }
        
        .content-section.active {
            display: block;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-1.2.1&auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover;
            color: var(--white);
            padding: 150px 0;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
        }
        
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: var(--white);
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(27, 169, 225, 0.3);
            text-decoration: none;
        }
        
        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 95, 135, 0.3);
        }
        
        .btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        /* Main Content */
        .main-content {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .feature {
            flex: 1;
            min-width: 300px;
            margin: 0 15px 30px;
            padding: 40px 30px;
            background: var(--light-color);
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        /* Destinations */
        .destinations {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .destination {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .destination:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .destination-img {
            height: 250px;
            overflow: hidden;
        }
        
        .destination-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .destination:hover .destination-img img {
            transform: scale(1.1);
        }
        
        .destination-content {
            padding: 25px;
        }
        
        .destination-content h3 {
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .destination-content p {
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        /* Testimonials */
        .testimonials {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?ixlib=rb-1.2.1&auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }
        
        .testimonial {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial-text {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .contact-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-1.2.1&auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }
        
        .contact-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
        }
        
        /* Contact Form */
        .contact-form-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--light-color);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .contact-form h3 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--primary-color);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .required {
            color: #e74c3c;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }
        
        .privacy-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .privacy-checkbox input {
            margin-top: 5px;
        }
        
        .privacy-checkbox label {
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .privacy-checkbox a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .privacy-checkbox a:hover {
            text-decoration: underline;
        }
        
        .form-note {
            margin-top: 15px;
            font-size: 0.9rem;
            color: var(--text-light);
            font-style: italic;
        }
        
        /* CAPTCHA Modal */
        .captcha-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .captcha-modal.active {
            display: flex;
        }
        
        .captcha-container {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            width: 90%;
            text-align: center;
            animation: modalSlideIn 0.3s ease-out;
        }
        
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .captcha-header {
            margin-bottom: 25px;
        }
        
        .captcha-header h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.8rem;
        }
        
        .captcha-header p {
            color: var(--text-light);
        }
        
        .captcha-challenge {
            background: var(--light-color);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 25px;
            border: 2px solid #e9ecef;
        }
        
        .captcha-text {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: 5px;
            color: var(--dark-color);
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            padding: 15px;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.9);
            display: inline-block;
            user-select: none;
            transform: rotate(-2deg);
        }
        
        .captcha-input {
            margin-bottom: 20px;
        }
        
        .captcha-input input {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1.2rem;
            text-align: center;
            letter-spacing: 2px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .captcha-input input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(27, 169, 225, 0.2);
            outline: none;
        }
        
        .captcha-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .captcha-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        
        .captcha-submit {
            background: var(--primary-color);
            color: var(--white);
            flex: 2;
        }
        
        .captcha-submit:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .captcha-refresh {
            background: var(--light-color);
            color: var(--text-color);
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .captcha-refresh:hover {
            background: #e9ecef;
            transform: rotate(15deg);
        }
        
        .captcha-status {
            margin-top: 15px;
            font-size: 0.9rem;
            min-height: 20px;
        }
        
        .captcha-success {
            color: #28a745;
            font-weight: 600;
        }
        
        .captcha-error {
            color: #e74c3c;
            font-weight: 600;
        }
        
        .captcha-footer {
            margin-top: 20px;
            font-size: 0.8rem;
            color: var(--text-light);
        }
        
        /* Footer */
        .site-footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        
        .footer-col p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            transition: var(--transition);
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1, .contact-hero h1 {
                font-size: 3rem;
            }
            
            .hero h2 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .main-nav ul {
                margin-top: 20px;
                justify-content: center;
            }
            
            .main-nav li {
                margin: 0 10px;
            }
            
            .hero, .contact-hero {
                padding: 100px 0;
            }
            
            .hero h1, .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .hero h2 {
                font-size: 1.3rem;
            }
            
            .feature {
                min-width: 100%;
                margin-bottom: 20px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .captcha-actions {
                flex-direction: column;
            }
            
            .captcha-text {
                font-size: 1.8rem;
                letter-spacing: 3px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1, .contact-hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .destinations {
                grid-template-columns: 1fr;
            }
            
            .contact-form-container,
            .captcha-container {
                padding: 20px;
            }
            
            .captcha-text {
                font-size: 1.5rem;
                letter-spacing: 2px;
            }
        }

/* Honeypot field (anti-spam) */
.hp{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;}


/* Force white hero headline text */
.hero-white{color:#fff !important;}


/* Ensure hero title/subtitle are readable */
.hero-content h1,
.hero-content h2{color:#fff !important;}
