
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #1a1a1a;
            color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

.contact-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            position: relative;
            display: flex;
            align-items: center;
            padding: 60px 20px;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 800"><path d="M0 0L300 200L200 800L0 600Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat;
            background-size: cover;
            z-index: 1;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 400px;
            height: 200px;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 70%);
            clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
            z-index: 1;
        }

        .container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 60px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 40px;
            animation: slideInLeft 0.8s ease-out;
        }

        .info-group {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .info-item:hover {
            padding-left: 10px;
            border-bottom-color: rgba(255,255,255,0.3);
        }

        .info-item::before {
            content: '';
            position: absolute;
            left: -5px;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            transition: height 0.3s ease;
        }

        .info-item:hover::before {
            height: 100%;
        }

        .icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .info-item:hover .icon {
            transform: scale(1.2) rotate(360deg);
        }

        .info-text {
            font-size: 16px;
            line-height: 1.5;
            color: #ccc;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border: 2px solid transparent;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .social-link:hover::before {
            left: 0;
        }

        .social-link:hover {
            transform: translateY(-5px);
            border-color: rgba(255,255,255,0.3);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .booking-form {
            background: rgba(255,255,255,0.05);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            animation: slideInUp 0.8s ease-out 0.2s both;
            position: relative;
            overflow: hidden;
        }

        .booking-form::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus {
            border-color: #ff6b6b;
            background: rgba(255,255,255,0.15);
            box-shadow: 0 0 20px rgba(255,107,107,0.3);
        }

        .form-input::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #feca57, #ff6b6b);
            transition: left 0.3s ease;
        }

        .submit-btn:hover::before {
            left: 0;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255,107,107,0.4);
        }

        .submit-btn span {
            position: relative;
            z-index: 2;
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.2);
            position: relative;
            height: 400px;
        }
        .map-container iframe{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
      


        .footer-info {
            grid-column: 1 / -1;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-contact {
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #ccc;
            font-size: 16px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            transform: translateY(-2px);
        }

        .copyright {
            width: 100%;
            text-align: center;
            color: #666;
            font-size: 16px;
            margin-top: 20px;
        }
        .copyright a{

            text-decoration: none;
            color: #fff;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            .map-container {
                grid-column: 1 / -1;
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }
            
            .contact-section {
                padding: 40px 20px;
            }
            
            .booking-form {
                padding: 30px 20px;
            }
            
            .map-container {
                height: 250px;
            }
            
            .footer-info {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .footer-contact {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 20px 15px;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .booking-form {
                padding: 20px 15px;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .submit-btn {
                padding: 15px;
                font-size: 16px;
            }
            .map-container{
                height: 400px;
            }
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

       

      

        /* Loading animation */
        .loading {
            opacity: 0;
            animation: fadeIn 0.6s ease-out 0.8s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }



