/* --- Core Variables & Resets --- */
:root {
    --primary-color: #000000;
    --text-color: #333333;
    --accent-color: #00d2d3; /* Hackence Teal */
    --light-bg: #fdfdfd;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden; /* STRICT NO HORIZONTAL SCROLL */
    width: 100%;
}
* { box-sizing: inherit; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* --- Premium Bright Header --- */
.site-header { position: fixed; top: 0; left: 0; width: 100%; padding: 25px 50px; display: flex; justify-content: space-between; align-items: center; z-index: 999; transition: all 0.4s ease; background: transparent; }
.site-header.scrolled { padding: 15px 50px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.logo-link { display: flex; align-items: center; }
.nav-logo-img { height: 40px; width: auto; object-fit: contain; transition: transform 0.3s; }
.nav-logo-img:hover { transform: scale(1.05); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.btn-call { border: 2px solid #111; padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; background: transparent; color: #111; transition: var(--transition); display: flex; align-items: center; gap: 8px;}
.btn-call:hover { background: var(--accent-color); color: #000; border-color: var(--accent-color); box-shadow: 0 10px 20px rgba(0,210,211,0.2); transform: translateY(-2px);}
.menu-toggle { background: #111; border: none; cursor: pointer; width: 50px; height: 50px; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; transition: var(--transition); }
.menu-toggle:hover { transform: scale(1.05); background: var(--accent-color); }
.menu-toggle .bar { width: 22px; height: 2px; background-color: white; }

/* Nav Overlay */
.nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: #050505; z-index: 1000; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.5s ease, visibility 0.5s ease; }
.nav-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.close-btn { position: absolute; top: 30px; right: 50px; background: white; border: none; color: black; font-size: 2.5rem; line-height: 1; cursor: pointer; width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center; transition: 0.3s; }
.close-btn:hover { background: var(--accent-color); color: white; transform: rotate(90deg); }
.main-nav ul { list-style: none; text-align: center; padding: 0; }
.main-nav ul li { margin: 15px 0; transform: translateY(30px); opacity: 0; transition: all 0.5s ease; transition-delay: calc(0.1s * var(--i)); }
.nav-overlay.active .main-nav ul li { transform: translateY(0); opacity: 1; }
.main-nav ul li a { color: white; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s; }
.main-nav ul li a:hover { color: var(--accent-color); }


/* =========================================
   REDESIGNED HERO SECTION
   ========================================= */
.photo-hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #f0fdff 0%, #ffffff 100%);
    overflow: hidden;
}

/* Ambient Glows */
.ambient-glow { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; opacity: 0.6; pointer-events: none; animation: floatGlow 8s infinite alternate ease-in-out;}
.glow-teal { width: 40vw; height: 40vw; background: rgba(0, 210, 211, 0.15); top: -10%; right: -10%; }
.glow-pink { width: 30vw; height: 30vw; background: rgba(255, 0, 128, 0.05); bottom: 10%; left: -5%; animation-delay: -4s; }

@keyframes floatGlow { 0% { transform: translate(0, 0); } 100% { transform: translate(-30px, 30px); } }

.hero-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Left Text Box */
.hero-text-box { display: flex; flex-direction: column; align-items: flex-start; }
.premium-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-color); background: rgba(0, 210, 211, 0.1); padding: 8px 20px; border-radius: 30px; margin-bottom: 25px; border: 1px solid rgba(0, 210, 211, 0.2); }
.premium-badge i { font-size: 1rem; }

.photo-title { font-size: clamp(3rem, 5vw, 5rem); font-weight: 900; line-height: 1.1; color: #111; margin-bottom: 25px; letter-spacing: -2px; }
.text-highlight { color: transparent; -webkit-text-stroke: 2px #111; background: linear-gradient(90deg, #111, var(--accent-color)); -webkit-background-clip: text; }

.photo-desc { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.8; color: #666; margin-bottom: 40px; max-width: 95%; min-height: 90px;}

.hero-features { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }
.p-feat { display: flex; align-items: center; gap: 15px; font-size: 1.1rem; font-weight: 700; color: #333; }
.p-feat i { color: var(--accent-color); font-size: 1.2rem; background: #fff; width: 45px; height: 45px; display: flex; justify-content: center; align-items: center; border-radius: 50%; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }

.btn-book { display: inline-flex; align-items: center; gap: 12px; background: #111; color: #fff; padding: 18px 45px; border-radius: 50px; font-weight: 800; font-size: 1.1rem; transition: var(--transition); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-book:hover { background: var(--accent-color); color: #000; transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 210, 211, 0.4); }

/* Right Responsive Image Grid */
.premium-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    transition: transform 0.2s ease-out; 
}

.photo-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 6px solid #fff;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.photo-item:hover { transform: scale(1.05); z-index: 10; position: relative; }
.photo-item:hover img { transform: scale(1.1); }

.photo-item.large { grid-column: 1 / 3; grid-row: 1 / 2; height: 100%;}
.photo-item.small-1 { grid-column: 1 / 2; grid-row: 2 / 3; }
.photo-item.small-2 { grid-column: 2 / 3; grid-row: 2 / 3; }


/* =========================================
   SERVICES EXPERTISE GRID
   ========================================= */
.photo-services { padding: 120px 0; background: #fafafa; }
.sub-heading { display: block; font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-color); margin-bottom: 15px; font-weight: 800; }
.section-title { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; margin-bottom: 15px; color: #111; letter-spacing: -1px; }
.section-sub { font-size: 1.15rem; color: #666; margin-bottom: 60px; }
.text-center { text-align: center; }

.ps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.ps-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.04); transition: var(--transition); border: 1px solid #f4f4f4;}
.ps-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0,210,211,0.15); border-color: var(--accent-color); }
.ps-img-wrap { width: 100%; height: 280px; overflow: hidden; }
.ps-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); }
.ps-card:hover img { transform: scale(1.1); }
.ps-card-content { padding: 35px 30px; }
.ps-card-content h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; color: #111; }
.ps-card-content p { color: #666; line-height: 1.7; font-size: 1.05rem;}


/* =========================================
   GLASSMORPHISM BOOKING FORM
   ========================================= */
.booking-section { padding: 120px 0; background: #ffffff; position: relative; overflow: hidden;}
.booking-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }

.booking-title { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; color: #111; margin-bottom: 25px; line-height: 1.1; letter-spacing: -2px;}
.booking-desc { font-size: 1.15rem; line-height: 1.8; color: #555; margin-bottom: 40px; }

.contact-methods { display: flex; flex-direction: column; gap: 25px; }
.c-method { display: flex; align-items: center; gap: 25px; background: #fff; padding: 20px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: var(--transition); border: 1px solid transparent;}
.c-method:hover { transform: translateX(10px); border-color: var(--accent-color); box-shadow: 0 15px 40px rgba(0,210,211,0.1);}
.c-method i { width: 65px; height: 65px; background: rgba(0, 210, 211, 0.1); color: var(--accent-color); font-size: 1.8rem; display: flex; justify-content: center; align-items: center; border-radius: 50%; }
.c-method span { display: block; font-size: 0.85rem; color: #888; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700;}
.c-method strong { font-size: 1.4rem; color: #111; font-weight: 900; }

/* The Form Card */
.premium-glass-card { background: #fafbfc; border-radius: 30px; padding: 50px; box-shadow: 0 30px 60px rgba(0,0,0,0.08); border: 1px solid #eaeaea; }
.premium-glass-card h3 { font-size: 2.2rem; font-weight: 900; margin-bottom: 5px; color: #111; letter-spacing: -1px;}
.form-sub { color: var(--accent-color); font-weight: 700; margin-bottom: 35px; text-transform: uppercase; letter-spacing: 1px;}

.input-row { display: flex; gap: 20px; margin-bottom: 20px; }
.input-group { flex: 1; display: flex; flex-direction: column; position: relative;}
.input-group label { font-size: 0.9rem; font-weight: 700; color: #444; margin-bottom: 10px; }
.input-group input, .input-group select, .input-group textarea { width: 100%; padding: 18px 20px; border: 2px solid #f0f0f0; background: #ffffff; border-radius: 12px; font-family: inherit; font-size: 1.05rem; color: #111; font-weight: 500; outline: none; transition: all 0.3s ease; }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { border-color: var(--accent-color); background: #fff; box-shadow: 0 5px 15px rgba(0,210,211,0.1); }
.input-group textarea { resize: vertical; min-height: 120px;}

.select-wrapper { position: relative; }
.select-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: #888; pointer-events: none; }
select { appearance: none; -webkit-appearance: none; cursor: pointer; }

.btn-whatsapp-submit { width: 100%; background: #25D366; color: white; border: none; padding: 20px; font-size: 1.2rem; font-weight: 800; border-radius: 15px; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 12px; transition: all 0.3s ease; margin-top: 20px; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);}
.btn-whatsapp-submit:hover { background: #1ebe5d; transform: translateY(-5px); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5); }
.btn-whatsapp-submit i { font-size: 1.6rem; }


/* =========================================
   FOOTER (Dark)
   ========================================= */
.site-footer { background-color: #050505; color: #ffffff; padding: 100px 50px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 80px; }
.brand-col p { color: #888; line-height: 1.7; margin-bottom: 30px; max-width: 90%; font-size: 1rem; }
.social-links { display: flex; gap: 15px; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: rgba(255, 255, 255, 0.05); color: white; border-radius: 50%; transition: all 0.3s ease; font-size: 1.1rem; }
.social-links a:hover { background: var(--accent-color); color: #000; transform: translateY(-3px); }
.footer-col h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 30px; position: relative; padding-bottom: 15px; color: white; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--accent-color); border-radius: 2px;}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: #888; transition: all 0.3s ease; font-size: 1rem; font-weight: 500;}
.footer-col ul li a:hover { color: var(--accent-color); padding-left: 8px; }
.contact-col p { color: #888; display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; line-height: 1.6; font-size: 1rem; font-weight: 500;}
.contact-col i { color: var(--accent-color); margin-top: 5px; font-size: 1.2rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 30px; text-align: center; color: #555; font-size: 0.95rem; font-weight: 500; }


/* =========================================
   NEW: HIGHLY VISIBLE CURSOR & PHOTO SPRAY
   ========================================= */
body { cursor: none; }

/* Bold Black Dot for bright background */
.cursor-dot { 
    width: 10px; height: 10px; 
    background-color: #111111; 
    border-radius: 50%; position: fixed; top: 0; left: 0; 
    pointer-events: none; z-index: 9999; 
    transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s; 
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Teal outline with soft background fill for contrast */
.cursor-outline { 
    width: 45px; height: 45px; 
    border: 2px solid var(--accent-color); 
    background-color: rgba(0, 210, 211, 0.1); 
    border-radius: 50%; position: fixed; top: 0; left: 0; 
    pointer-events: none; z-index: 9998; 
    transform: translate(-50%, -50%); 
    transition: width 0.2s, height 0.2s, background-color 0.2s; 
    transition-duration: 0.15s; transition-timing-function: ease-out; 
}
.cursor-hover .cursor-outline { 
    width: 70px; height: 70px; 
    background-color: rgba(0, 210, 211, 0.2); 
    border-color: transparent; 
}

/* Spray Icons fixed position to prevent scrolling separation */
.social-spray-icon { 
    position: fixed; 
    pointer-events: none; 
    font-size: 24px; 
    z-index: 9997; 
    animation: sprayAnim 1s forwards cubic-bezier(0.1, 0.8, 0.3, 1); 
    text-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Helps icons pop on bright backgrounds */
}

@keyframes sprayAnim {
    0% { transform: translate(-50%, -50%) scale(0.2) rotate(0deg); opacity: 1; }
    100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.5) rotate(var(--rot)); opacity: 0; }
}

/* Typing Effect Cursor Blink */
.typewriter { display: inline; min-height: 25px; }
.typewriter.typing::after { content: '|'; display: inline-block; color: var(--accent-color); animation: blink 0.8s infinite; margin-left: 2px;}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Disable custom cursor on mobile to prevent bugs */
@media (hover: none) and (pointer: coarse) {
    body { cursor: auto; }
    .cursor-dot, .cursor-outline, .social-spray-icon { display: none !important; }
}

/* Animations */
.reveal-left, .reveal-right, .reveal-up, .reveal-fade { opacity: 0; transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up { transform: translateY(60px); }
.reveal-fade { transform: scale(0.95); }
.active.reveal-left, .active.reveal-right, .active.reveal-up { opacity: 1; transform: translate(0); }
.active.reveal-fade { opacity: 1; transform: scale(1); }


/* =========================================
   STRICT MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .booking-container { grid-template-columns: 1fr; gap: 60px; }
    .input-row { flex-direction: column; gap: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .site-header { padding: 15px 20px; }
    .site-header.scrolled { padding: 10px 20px; }
    .nav-logo-img { height: 30px; }
    .btn-call { display: none; }
    .close-btn { top: 20px; right: 20px; width: 45px; height: 45px; font-size: 2rem; }
    .main-nav ul li a { font-size: 2.5rem; }
    
    .photo-hero { padding-top: 130px; min-height: auto; }
    .hero-grid-wrapper { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-text-box { align-items: center; }
    .photo-desc { min-height: auto; margin-bottom: 30px;}
    
    .premium-photo-grid { grid-template-rows: repeat(2, 200px); }
    .premium-glass-card { padding: 30px 20px; }
    .booking-title { font-size: 2.5rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .site-footer { padding: 60px 20px 20px; }
}

@media (max-width: 480px) {
    .premium-photo-grid { grid-template-rows: repeat(2, 150px); gap: 10px;}
    .photo-item { border-width: 3px; border-radius: 12px;}
    .c-method { flex-direction: column; text-align: center; gap: 10px; padding: 20px 10px;}
}