/* ===== Global Styles ===== */
body {
    background-color: #0A1A2F;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #00F5FF;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00F5FF;
}

h1 {
    font-size: 3em;
    margin: 10px 0;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #00F5FF;
    text-shadow: 0 0 10px #00F5FF;
}

.cta-button {
    background: #00F5FF;
    color: #0A1A2F;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    margin-top: 15px;
}

.cta-button:hover {
    background: white;
    box-shadow: 0 0 15px #00F5FF;
}

footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #00F5FF;
    margin-top: 50px;
}

/* ===== Services Page ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
}

.service-card {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid #00F5FF;
    border-radius: 10px;
    padding: 20px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.3);
}

/* ===== Gallery Page ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 40px;
}

.gallery-item img {
    width: 100%;
    border-radius: 5px;
    transition: 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* ===== Contact Page ===== */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    margin: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid #00F5FF;
    color: white;
}

.contact-form button {
    width: 100%;
}

/* Calendly Widget Styling */
.booking-section {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid #00F5FF;
    border-radius: 10px;
    margin: 40px;
}

.booking-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00F5FF;
    margin-bottom: 10px;
}

.calendly-inline-widget {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}