/* --- Variables & Reset --- */
:root {
    --primary-blue: #00AEEF; /* Bright Cyan Blue */
    --dark-bg: #0b0d17;      /* Deep Navy/Black */
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    scroll-behavior: smooth;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary { background-color: var(--primary-blue); color: white; }
.btn-primary:hover { background-color: #008cbf; transform: 
translateY(-2px); }

.sub-heading { color: var(--primary-blue); font-size: 1rem; 
letter-spacing: 1px; margin-bottom: 5px; }
.divider { width: 50px; height: 3px; background-color: 
var(--primary-blue); margin: 15px 0 25px 0; }

/* --- Hero Section --- */
.hero-section {
    position: relative;
    background: linear-gradient(105deg, #0b0d17 50%, #1a1e35 100%);
    color: var(--text-light);
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}
.hero-section::before {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background-image: var(--hero-bg-url, url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=2070&auto=format&fit=crop'));
    background-size: cover; background-position: center; opacity: 0.3; 
    z-index: 0;
}

.top-bar {
    position: relative; z-index: 2; display: flex; justify-content: 
space-between;
    align-items: center; padding: 20px 50px; background: rgba(0,0,0,0.3);
}
.main-logo {
    height: 150px; /* Adjust this to make your logo bigger/smaller */
    width: auto;
    display: block;
}
.top-contact { display: flex; gap: 20px; font-size: 0.9rem; font-family: 
var(--font-heading); }
.top-contact i { color: var(--primary-blue); margin-right: 5px; }

.hero-content {
    position: relative; z-index: 2; flex: 1; display: flex; align-items: 
center;
    padding: 0 50px; max-width: 1400px; margin: 0 auto; width: 100%;
}
.hero-text h1 { font-size: 4.5rem; line-height: 1; margin-bottom: 20px; 
font-style: italic; }
.hero-text .outline-text { color: transparent; -webkit-text-stroke: 2px 
white; }
.hero-text p { font-size: 1.2rem; margin-bottom: 30px; max-width: 400px; }
.hero-decoration { position: absolute; bottom: 0; right: 10%; display: 
flex; gap: 15px; }
.hero-decoration span { width: 20px; height: 100px; background: white; 
transform: skewX(-20deg); display: block; }

/* --- About Section --- */
.about-section { padding: 80px 0; background: white; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; 
align-items: center; }
.about-section .image-box img { width: 100%; border-radius: 10px; 
box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-section h2 { font-size: 2.5rem; margin-bottom: 10px; }
.about-section p { margin-bottom: 20px; color: #555; }

/* --- Gallery Section --- */
.gallery-section { padding: 80px 0; background: #f9f9f9; text-align: 
center; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 40px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, 
minmax(250px, 1fr)); gap: 30px; margin-bottom: 30px; }
.gallery-card { background: white; padding: 20px; border: 1px solid 
#e0f7ff; border-radius: 10px; transition: 0.3s; }
.gallery-card:hover { box-shadow: 0 10px 20px rgba(0,174,239,0.15); 
transform: translateY(-5px); }
.gallery-card img { width: 100%; height: auto; display: block; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid 
var(--primary-blue); }
.dot.active { background-color: var(--primary-blue); }

/* --- Contact Section --- */
.contact-section { padding: 80px 0; background: white; }
.contact-form h2 { font-size: 2.5rem; margin-bottom: 20px; }
.form-group { margin-bottom: 25px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; border: none; border-bottom: 1px solid #ccc; padding: 
10px 0;
    font-family: var(--font-body); font-size: 1rem; outline: none; 
background: transparent;
}
.form-group input:focus, .form-group textarea:focus { border-bottom-color: 
var(--primary-blue); }

.contact-map-wrapper {
    position: relative; height: 100%; min-height: 400px; background-color: 
#222; border-radius: 5px; overflow: hidden;
}
.map-bg {
    width: 100%; height: 100%; opacity: 0.6;
    background-image: var(--map-bg-url, url('https://placehold.co/600x600/333/666?text=Map+Overlay'));
    background-size: cover;
}
.info-card {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, 
-50%);
    background: white; padding: 30px; width: 80%; max-width: 350px; 
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.info-group { margin-bottom: 20px; }
.info-group h5 { color: var(--primary-blue); margin-bottom: 5px; }
.email-text { word-break: break-all; }
.social-mini i { margin-right: 15px; color: #333; cursor: pointer; }

/* --- Footer --- */
footer {
    background: var(--footer-bg-url, url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?q=80&w=1975&auto=format&fit=crop'));
    background-size: cover; background-blend-mode: multiply; 
    background-color: rgba(0,0,0,0.9);
    color: #ccc; padding: 60px 0 20px 0; font-size: 0.9rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; 
gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: white; margin-bottom: 20px; font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a:hover { color: var(--primary-blue); padding-left: 5px; 
}
.logo-circle.white { border-color: white; color: var(--dark-bg); 
margin-bottom: 20px; }
.social-links a {
    display: inline-flex; justify-content: center; align-items: center; 
width: 35px; height: 35px;
    background: #333; color: white; margin-right: 10px; border-radius: 
4px; transition: 0.3s;
}
.social-links a:hover { background: var(--primary-blue); }
.contact-list i { color: var(--primary-blue); margin-right: 10px; }
.app-buttons .app-btn {
    display: flex; align-items: center; gap: 10px; background: #000; 
color: white;
    border: 1px solid #444; padding: 8px 15px; border-radius: 5px; width: 
100%; margin-bottom: 10px; cursor: pointer;
}
.copyright { text-align: center; border-top: 1px solid #222; padding-top: 
20px; font-size: 0.8rem; color: var(--primary-blue); }

@media (max-width: 768px) {
    .top-bar { flex-direction: column; gap: 15px; padding: 15px; }
    .top-contact { flex-direction: column; text-align: center; gap: 5px; }
    .hero-text h1 { font-size: 2.8rem; }
    .split-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- Iframe modal --- */
.iframe-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.iframe-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.iframe-modal-content { position: relative; width: 90%; max-width: 1000px; height: 80%; background: white; border-radius: 6px; overflow: hidden; z-index: 2; display:flex; flex-direction:column }
.iframe-modal-content #iframeClose { align-self: flex-end; margin: 10px; padding: 8px 12px; }
.iframe-modal-content iframe { flex: 1 1 auto; width: 100%; border: 0; }
