
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --light: #f5f5f5;
            --gold: #d4af37;
        }

        body {
            background-color: var(--light);
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: rgba(26, 26, 46, 0.9);
            color: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
        }

        .logo span {
            color: white;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--gold);
        }

        .auth-buttons a {
            color: white;
            text-decoration: none;
            margin-left: 20px;
            font-weight: 500;
        }

        .auth-buttons a:first-child {
            border: 1px solid var(--gold);
            padding: 8px 20px;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .auth-buttons a:first-child:hover {
            background-color: var(--gold);
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgb(0 0 0 / 0%)), url("https://ezeeflights.es/img/bannerhome.avif");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }

        .hero-content {
            max-width: 1100px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .search-box {
            background: white;
            border-radius: 50px;
            padding: 10px;
            display: flex;
           /* max-width: 700px; */
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .search-box input {
            flex: 1;
            border: none;
            padding: 15px 20px;
            border-radius: 50px;
            font-size: 16px;
            outline: none;
        }

        .search-box button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }

        .search-box button:hover {
            background: #d13453;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .service-content p {
            color: #666;
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }

        .service-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .service-link:hover i {
            transform: translateX(5px);
        }

        /* Featured Villas */
        .featured-villas {
            padding: 100px 0;
            background-color: #f9f9f9;
        }

        .villas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .villa-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .villa-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .villa-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .villa-price {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 600;
        }

        .villa-content {
            padding: 25px;
        }

        .villa-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .villa-location {
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .villa-location i {
            margin-right: 5px;
            color: var(--accent);
        }

        .villa-features {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
                font-size: 14px;
        }

        .villa-feature {
            display: flex;
            align-items: center;
        }

        .villa-feature i {
            margin-right: 5px;
            color: var(--accent);
        }

        .villa-link {
            display: block;
            text-align: center;
            background: var(--primary);
            color: white;
            padding: 12px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .villa-link:hover {
            background: var(--secondary);
        }

        /* Charter Flights */
        .charter-flights {
            padding: 100px 0;
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                        url('https://ezeeflights.es/img/middle-banner.avif');
            background-size: cover;
            background-position: center;
            color: white;
        }

        .flights-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .flights-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .flights-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .flight-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .flight-type {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s;
        }

        .flight-type:hover {
            transform: translateY(-10px);
        }

        .flight-type i {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--gold);
        }

        .flight-type h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .flight-type p {
            font-size: 16px;
            opacity: 0.8;
        }

        .cta-button {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: background 0.3s;
        }

        .cta-button:hover {
            background: #d13453;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 80px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: var(--gold);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 15px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
            font-size: 14px;
        }
        
        .box1{ width: 180px; border-right: 1px solid #ccc !important; }
        .box2{ width: 180px; border-right: 1px solid #ccc !important; }
        .box3{ width: 160px; padding-left: 0px; border-right: 1px solid #ccc !important; }
        .box4{ width: 160px; padding-left: 0px; border-right: 1px solid #ccc !important; }
        .box5{ width: 178px; border-right: 1px solid #ccc !important; }
        .box6{ width: 147px; border-right: 1px solid #ccc !important; }
        .box7{ width: 152px; border-right: 0px solid #ccc !important; }
            

        /* Responsive */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
            }

            nav ul {
                margin: 20px 0;
            }

            .auth-buttons {
                margin-top: 10px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {
            
            .maindivlis{
                display:none;
            }
            
            nav ul {
                flex-direction: column;
                text-align: center;
            }

            nav ul li {
                margin: 10px 0;
            }

            .hero h1 {
                font-size: 25px;
                margin-top: 92px;
            }

            .search-box {
                flex-direction: column;
                border-radius: 10px;
            }

            .search-box input {
                border-radius: 10px;
                margin-bottom: 0px;
                border-bottom: 1px solid #ccc;
            }

            .search-box button {
                border-radius: 10px;
            }
            .box1{ width: 100%; border-right: 0px solid #ccc !important; }
            .box2{ width: 100%; border-right: 0px solid #ccc !important; }
            .box3{ width: 100%; padding-left: 0px; border-right: 0px solid #ccc !important; }
            .box4{ width: 100%; padding-left: 0px; border-right: 0px solid #ccc !important; }
            .box5{ width: 100%; border-right: 0px solid #ccc !important; }
            .box6{ width: 100%; border-right: 0px solid #ccc !important; }
            .box7{ width: 100%; border-right: 0px solid #ccc !important; }
        }