/* =======================================================
   TEMPLATE 3 — PHOTOGRAPHY STUDIO (PREMIUM DARK THEME)
   ======================================================= */

body {
    font-family: 'Poppins', sans-serif;
    background: #0B0B0B;
    margin: 0;
    padding: 0;
    color: #E0E0E0;
}

.container {
    max-width: 620px;
}

/* ---------------- VIDEO SECTION ---------------- */
.video-section {
    position: relative;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.1);
}

/* CINEMATIC TITLE */
.clinic-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.8);
}

@media (min-width: 768px) {
    .clinic-title { font-size: 42px; }
    .video-section video { height: 380px; }
}

@media (min-width: 1024px) {
    .clinic-title { font-size: 50px; }
    .video-section video { height: 450px; }
}

/* ---------------- CONTACT CARDS ---------------- */
.contact-cards { 
    margin-top: 28px;
}

.card-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    background: #1A1A1A;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #C89B3C;
    box-shadow: 0 0 10px rgba(200,155,60,0.12);
    transition: 0.25s;
}

.card-btn:hover {
    background: #222222;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(200,155,60,0.25);
}

.icon-img {
    width: 34px;
    height: 34px;
}

/* ---------------- HIGHLIGHTS ---------------- */
.highlight-section {
    background: #111111;
    padding: 32px;
    margin: 30px 12px;
    text-align: center;
    border-radius: 14px;
    border: 1px solid #2A2A2A;
    box-shadow: 0 0 14px rgba(255,255,255,0.04);
}

.highlight-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #C89B3C;
}

.highlight-section p {
    font-size: 15px;
    color: #D5D5D5;
    margin-top: 8px;
    line-height: 1.6;
}

/* ---------------- CONTACT DETAILS ---------------- */
.details-section { margin-top: 25px; }

.details-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #C89B3C;
}

.details-section p {
    font-size: 15px;
    margin-bottom: 12px;
}

/* ---------------- ADDRESS ---------------- */
.address-section {
    background: #111111;
    padding: 35px 0;
    margin-top: 25px;
    text-align: center;
    color: #C89B3C;
    border-top: 1px solid #2A2A2A;
}

.vector-img {
    width: 150px;
    margin-bottom: 14px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
}

/* ---------------- SAVE CONTACT ---------------- */
.save-contact {
    text-align: center;
    margin: 50px 0 32px 0;
}

.save-btn {
    background: #C89B3C;
    color: black;
    padding: 14px 38px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: 0.25s;
}

.save-btn:hover {
    background: #d8ae52;
    transform: scale(1.05);
}

/* ---------------- SOCIAL CARDS ---------------- */
.social-section { 
    margin-top: 32px; 
}

.social-card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    border-radius: 10px;
}

.social-icon { width: 32px; }

.insta { background: #E1306C; }
.whatsapp { background: #25D366; }
.facebook { background: #3A559F; }

/* ---------------- SLIDER ---------------- */
.slider-section { 
    margin: 35px 0; 
}

.slide-box {
    position: relative;
    display: flex;
    justify-content: center;
}

.slide-box img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(0.82);
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
    .slide-box img { height: 350px; }
}

@media (min-width: 1024px) {
    .slide-box img { height: 420px; }
}

@media (min-width: 1400px) {
    .slide-box img { height: 480px; }
}

.slider-btn {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: #C89B3C;
    color: black;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(200,155,60,0.4);
    transition: 0.25s;
}

.slider-btn:hover {
    background: #d8ae52;
}

/* TEMPLATE 3 — PHOTOGRAPHY SERVICES */
.services-section-photo { margin-top: 35px; }

.services-title-photo {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.service-box-photo {
    background: #1c1c1c;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.45);
}

.service-box-photo img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    filter: brightness(0.92);
}

@media (min-width: 768px) {
    .service-box-photo img { height: 160px; }
}

@media (min-width: 1024px) {
    .service-box-photo img { height: 190px; }
}


/* ================= MAP SECTION ================= */
.map-section {
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.map-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Responsive Map Wrapper */
.map-box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.20);
}

.map-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
}

/* TEMPLATE 3 — UPI (Dark Photography Theme) */
.upi-section {
    margin-top: 40px;
    text-align: center;
}

.upi-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff; /* White title */
    margin-bottom: 12px;
}

.upi-id {
    font-size: 16px;
    font-weight: 600;
    color: #e8e8e8; /* Light grey */
}

.upi-id span {
    color: #00aaff; /* Neon blue highlight */
}

.upi-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 15px;
}

.pay-icon {
    width: 60px;
    height: 60px;
    background: #1b1b1b; /* Dark glossy box */
    border-radius: 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 4px 16px rgba(0,0,0,0.45); /* Deep shadow */
}

.pay-icon img {
    width: 34px;
    filter: brightness(0.93); /* Slight dimming to match dark UI */
}
