/* Welcome Page Styles */
body {
    font-family: 'Segoe UI', sans-serif;
}

.hero {
    /* background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%); */
    color: #333;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero .btn {
    background: #1976d2;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-visual::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, #e8f5e8 0%, #c8e6c9 100%);
    border-radius: 50%;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hair-transplant-demo {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid #1976d2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1976d2;
    font-weight: bold;
    z-index: 2;
}

.section-title {
    font-weight: bold;
    margin-bottom: 30px;
}

/* About Section Styles */
.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image-container:hover {
    transform: translateY(-5px);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.overlay-content i {
    font-size: 2rem;
    color: #4ade80;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

.about-content {
    padding-left: 20px;
}

.about-subtitle {
    color: #1976d2;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 25px;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.about-features .feature-item i {
    font-size: 1.2rem;
    color: #28a745;
}

.navbar a.navbar-brand {
    font-family: Crimson Text;
    font-size: x-large;
}

/* Responsive adjustments for about section */
@media (max-width: 768px) {
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .about-subtitle {
        font-size: 1.5rem;
    }
}

.navbar-brand {
    font-weight: bold;
    color: #0d6efd !important;
}

footer {
    background: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}

/* Services Section Styles */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(25, 118, 210, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.service-card .card-body {
    padding: 1.5rem;
    text-align: left;
}

.service-card .card-title {
    color: #1976d2;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    min-height: 120px;
}

.service-card .btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    background: #1976d2;
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .service-image {
        height: 180px;
    }
    
    .service-card .card-body {
        padding: 1.25rem;
    }
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23dee2e6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.form-title {
    color: #1976d2;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-label i {
    color: #1976d2;
    font-size: 0.9rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form .form-control:focus {
    border-color: #1976d2;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(25, 118, 210, 0.25);
}

.submit-btn {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
}

.contact-info-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-title {
    color: #1976d2;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
}

.contact-info-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-content h5 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-content p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-title,
    .info-title {
        font-size: 1.5rem;
    }
    
    .contact-info-item {
        margin-bottom: 1rem;
    }
    
    .contact-info-grid {
        gap: 0.5rem;
    }
}

/* Form Validation and Messages */
.alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Loading state for submit button */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn .fa-spinner {
    margin-right: 0.5rem;
}



.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-size: 2rem;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    background: #128c7e;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp button responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Banner Section Styles */
.banner-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
    animation: bounce 2s infinite;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.highlight {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.4rem;
}

.banner-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: inline-block;
    margin: 0 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

.feature-item i {
    color: #4ade80;
    margin-right: 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustments for banner */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-text {
        font-size: 1rem;
    }
    
    .feature-item {
        display: block;
        margin: 0.5rem 0;
    }
}
.insta-icon i {
    font-size: 22px;
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.insta-icon i:hover {
    transform: scale(1.2);
    transition: 0.3s ease;
}

/* Technologies Section Styles */
.technologies-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.technologies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23dee2e6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.technologies-section .container {
    position: relative;
    z-index: 2;
}

.tech-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.tech-card.featured {
    border: 3px solid #667eea;
    position: relative;
}

.tech-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.tech-card.featured .tech-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tech-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tech-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.tech-content {
    padding: 2rem 1.5rem;
}

.tech-feature {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.tech-feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.feature-value {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.cta-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Responsive Design for Technologies */
@media (max-width: 992px) {
    .tech-title {
        font-size: 2rem;
    }
    
    .tech-subtitle {
        font-size: 1rem;
    }
    
    .tech-content {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tech-header {
        padding: 1.5rem 1rem;
    }
    
    .tech-title {
        font-size: 1.8rem;
    }
    
    .tech-subtitle {
        font-size: 0.9rem;
    }
    
    .tech-content {
        padding: 1rem;
    }
    
    .feature-label {
        font-size: 0.8rem;
    }
    
    .feature-value {
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .tech-header {
        padding: 1rem;
    }
    
    .tech-title {
        font-size: 1.5rem;
    }
    
    .tech-subtitle {
        font-size: 0.85rem;
    }
    
    .tech-content {
        padding: 0.75rem;
    }
    
    .tech-feature {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .feature-label {
        font-size: 0.75rem;
    }
    
    .feature-value {
        font-size: 0.85rem;
    }
    
    .cta-section {
        padding: 1rem;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
}

/* Hero Banner Section Styles */
.hero-banner-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-section {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
}

.hero-text-content {
    padding: 0 3rem;
    max-width: 600px;
}

.hero-headline {
    color: white;
    font-family: 'Poppins', 'Arial', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
    line-height: 1.1;
}

.hero-line-1 {
    display: block;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-line-2 {
    display: block;
    font-size: 3.5rem;
}

.hero-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
}

.contact-form-overlay {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
}

.hero-contact-form {
    width: 100%;
}

.hero-contact-form .form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.hero-contact-form .form-control:focus {
    border-color: #20c997;
    box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
    outline: none;
}

.hero-contact-form .form-control::placeholder {
    color: #6c757d;
    font-weight: 500;
}

.btn-book-now {
    background: #20c997;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.4);
}

.btn-book-now:hover {
    background: #1ba085;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(32, 201, 151, 0.6);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-line-1,
    .hero-line-2 {
        font-size: 3rem;
    }
    
    .contact-form-overlay {
        width: 350px;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-banner-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-overlay-content {
        padding: 4rem 2rem;
    }
    
    .hero-text-section {
        margin-bottom: 2rem;
    }
    
    .hero-text-content {
        padding: 0;
        text-align: center;
    }
    
    .hero-line-1,
    .hero-line-2 {
        font-size: 2.5rem;
    }
    
    .hero-form-section {
        justify-content: center;
    }
    
    .contact-form-overlay {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-overlay-content {
        padding: 3rem 1rem;
    }
    
    .hero-line-1,
    .hero-line-2 {
        font-size: 2rem;
    }
    
    .contact-form-overlay {
        padding: 1.5rem 1rem;
        margin: 1rem;
    }
    
    .form-title {
        font-size: 1.1rem;
    }
    
    .hero-contact-form .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn-book-now {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-overlay-content {
        padding: 2rem 0.5rem;
    }
    
    .hero-line-1,
    .hero-line-2 {
        font-size: 1.6rem;
    }
    
    .contact-form-overlay {
        padding: 1.25rem 0.75rem;
        margin: 0.5rem;
    }
    
    .form-title {
        font-size: 1rem;
    }
    
    .hero-contact-form .form-control {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .btn-book-now {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 375px) {
    .hero-line-1,
    .hero-line-2 {
        font-size: 1.4rem;
    }
    
    .contact-form-overlay {
        padding: 1rem 0.5rem;
    }
    
    .form-title {
        font-size: 0.9rem;
    }
}

/* Banner Form Overlay Styles */
.banner-form-overlay {
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    z-index: 10;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
}

.banner-contact-form {
    width: 100%;
}

.banner-contact-form .form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.banner-contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.banner-contact-form .form-control::placeholder {
    color: #6c757d;
    font-weight: 500;
}

/* Responsive Design for Banner Form */
@media (max-width: 1200px) {
    .banner-form-overlay {
        right: 2rem;
    }
    
    .form-container {
        width: 350px;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .banner-form-overlay {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 2rem auto;
        display: flex;
        justify-content: center;
    }
    
    .form-container {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem 1rem;
        margin: 1rem;
    }
    
    .form-title {
        font-size: 1.1rem;
    }
    
    .banner-contact-form .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 1.25rem 0.75rem;
        margin: 0.5rem;
    }
    
    .form-title {
        font-size: 1rem;
    }
    
    .banner-contact-form .form-control {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .form-container {
        padding: 1rem 0.5rem;
    }
    
    .form-title {
        font-size: 0.9rem;
    }
}