/* De Falcon Goa Beach Resort - Main Stylesheet */

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

:root {
    --ocean-blue: #1e3a8a;
    --light-ocean: #3b82f6;
    --sky-blue: #60a5fa;
    --deep-ocean: #1e293b;
    --ocean-gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    --gold: #fbbf24;
    --gold-dark: #f59e0b;
    --gold-light: #fde68a;
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --white: #ffffff;
    --cream: #fef3c7;
    --beige: #fef3e2;
    --ivory: #fffff0;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-luxury: 0 10px 30px rgba(30, 58, 138, 0.15);
    --shadow-gold: 0 5px 20px rgba(251, 191, 36, 0.3);
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--ocean-blue);
    text-decoration: none;
}

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

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

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7), rgba(59, 130, 246, 0.5)),
                url('https://images.unsplash.com/photo-1507525428034-b723a9ce6890?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ocean-gradient);
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff, #fef3c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--ocean-blue);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

/* Resort Introduction */
.resort-intro {
    background: var(--cream);
    text-align: center;
    padding: 4rem 2rem;
}

.resort-intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Room Cards */
.rooms-preview {
    background: var(--white);
}

.room-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.room-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.room-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-card-content {
    padding: 1.5rem;
}

.room-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--ocean-blue);
}

.room-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.room-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 1rem;
}

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

.facility-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--ocean-blue);
}

/* Pricing Rates Section */
.pricing-rates-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fef3e2 100%);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.15);
}

.pricing-rates-section h2 {
    text-align: center;
    color: var(--ocean-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-rates-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pricing-rates-table thead {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
}

.pricing-rates-table thead th {
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    border: none;
}

.pricing-rates-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #1f2937;
    font-size: 0.95rem;
}

.pricing-rates-table tbody tr {
    transition: background-color 0.2s ease;
}

.pricing-rates-table tbody tr:hover {
    background-color: rgba(251, 191, 36, 0.08);
}

.pricing-rates-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-rates-table .col-category {
    font-weight: 600;
    color: var(--ocean-blue);
    min-width: 120px;
}

.pricing-rates-table .col-rate {
    color: #16a34a;
    font-weight: 600;
    min-width: 100px;
}

.pricing-rates-table .col-extra {
    color: #dc2626;
    font-weight: 500;
    min-width: 120px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--ocean-blue);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero .tagline {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .room-cards {
        grid-template-columns: 1fr;
    }

    /* Mobile specific improvements */
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

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

    .room-card {
        margin-bottom: 2rem;
    }

    .room-card-content {
        padding: 1rem;
    }

    .facility-card {
        margin-bottom: 1.5rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .room-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .container {
        padding: 0 20px;
    }
}

/* Large Mobile Devices */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .cta-buttons {
        width: 100%;
    }

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

    nav {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

/* Touch and interaction optimizations */
@media (hover: none) {
    .room-card:hover,
    .facility-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    .nav-links a:hover {
        transform: none;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

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

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out;
}

/* Luxury hover effects */
.luxury-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.luxury-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-luxury);
}

.gold-hover {
    transition: all 0.3s ease;
    position: relative;
}

.gold-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: inherit;
}

.gold-hover:hover::before {
    opacity: 0.1;
}

/* Glassmorphism effect */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-dark {
    background: rgba(30, 58, 138, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.18);
}

/* Premium shadows */
.shadow-luxury {
    box-shadow: var(--shadow-luxury);
}

.shadow-gold {
    box-shadow: var(--shadow-gold);
}

/* Fixed Background Effect */
.parallax {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Luxury text effects */
.text-gradient {
    background: var(--ocean-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced luxury styling */
.luxury-border {
    border: 2px solid var(--gold);
    position: relative;
}

.luxury-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    z-index: -1;
    opacity: 0.3;
    filter: blur(4px);
}

/* Room Detail Pages Styling */
.room-details {
    padding: 4rem 0;
}

.room-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.room-gallery-section {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
    cursor: pointer;
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-main:hover .gallery-main-overlay {
    opacity: 1;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    transition: all 0.3s ease;
}

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

.gallery-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
}

.gallery-thumb:hover img {
    transform: scale(1.1);
}

.gallery-thumb.active {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.room-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.room-header {
    margin-bottom: 1rem;
}

.room-header h2 {
    font-size: 2.5rem;
    color: var(--ocean-blue);
    margin-bottom: 1rem;
}

.room-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.room-pricing {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--gold);
}

.room-pricing .price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.room-pricing .price-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.room-description {
    line-height: 1.8;
}

.room-description p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.room-features {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
}

.room-features h3 {
    color: var(--ocean-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.amenity-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(30, 58, 138, 0.1);
}

.amenity-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.amenity-item div {
    flex: 1;
}

.amenity-item strong {
    color: var(--ocean-blue);
    display: block;
    margin-bottom: 0.3rem;
}

.amenity-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.room-specs {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border-top: 5px solid var(--gold);
}

.room-specs h3 {
    color: var(--ocean-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-item {
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 10px;
    border-left: 4px solid var(--ocean-blue);
}

.spec-item strong {
    color: var(--ocean-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.spec-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-buttons .btn {
    flex: 1;
    padding: 1.2rem 2rem;
    font-size: 1.05rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .room-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .room-gallery-section {
        position: static;
    }

    .gallery-main img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .room-header h2 {
        font-size: 2rem;
    }

    .amenities-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .gallery-main img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .room-header h2 {
        font-size: 1.5rem;
    }

    .room-pricing .price {
        font-size: 1.5rem;
    }

    .gallery-thumbnails {
        grid-template-columns: 1fr;
    }
}

/* ========== CONTACT PAGE STYLING ========== */

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(30, 58, 138, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInDown 0.8s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    margin-top: 60px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side - Contact Info Cards */
.contact-layout > div:first-child {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-layout > div:first-child:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
}

.contact-layout > div:first-child h2 {
    color: var(--ocean-blue);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.contact-layout > div:first-child h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 2px;
}

.contact-layout > div:first-child p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Right Side - Form */
.contact-form {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-row input {
    width: 100%;
}

/* Form Inputs - Enhanced */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.1rem 1.3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f9fafb;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #cbd5e1;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="date"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.15);
    transform: translateY(-2px);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e3a8a' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.3rem;
    padding-right: 2.8rem;
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Inter', sans-serif;
}

/* Date inputs */
.contact-form input[type="date"] {
    margin-bottom: 1.5rem;
}

/* Checkbox */
.contact-form input[type="checkbox"] {
    margin-right: 0.8rem;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
    margin-bottom: 0;
    vertical-align: middle;
}

.contact-form label {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    margin-bottom: 1.5rem !important;
    font-weight: 500 !important;
    gap: 0.8rem;
}

.checkbox-label input {
    margin: 0 !important;
}

/* Submit Button - Enhanced */
.contact-form button[type="submit"] {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--text-dark);
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.contact-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form button[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
}

.contact-form button[type="submit"]:active {
    transform: translateY(-2px);
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Message Display - Enhanced */
#formMessage {
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideIn 0.3s ease-out;
    border-left: 5px solid;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#formMessage.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-left-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

#formMessage.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-left-color: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Map Section - Enhanced */
.map-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.map-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-section h2 {
    color: var(--ocean-blue);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

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

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

.map-section iframe {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.15);
    border: 1px solid rgba(30, 58, 138, 0.08);
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-layout > div:first-child,
    .contact-form {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }

    .map-section {
        padding: 4rem 1rem;
    }

    .contact-layout > div:first-child,
    .contact-form {
        padding: 2rem;
    }

    .contact-layout > div:first-child h2 {
        font-size: 1.8rem;
    }

    .map-section h2 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form input[type="date"],
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
        padding: 1rem;
    }

    .contact-form button[type="submit"] {
        padding: 1.1rem;
        font-size: 1rem;
    }

    .map-section iframe {
        height: 300px;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-layout > div:first-child,
    .contact-form {
        padding: 1.5rem;
    }

    .contact-layout > div:first-child h2 {
        font-size: 1.5rem;
    }

    .contact-layout > div:first-child p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .map-section {
        padding: 2.5rem 1rem;
    }

    .map-section h2 {
        font-size: 1.5rem;
    }

    .map-section iframe {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    /* Pricing Rates Table Responsive */
    .pricing-rates-section {
        padding: 0 1rem;
    }

    .pricing-table-wrapper {
        overflow-x: auto;
    }

    .pricing-rates-table {
        font-size: 0.9rem;
    }

    .pricing-rates-table th,
    .pricing-rates-table td {
        padding: 0.8rem 0.6rem;
    }

    .pricing-rates-table thead th {
        font-size: 0.85rem;
    }
}