/*
Theme Name: Prime Visa Services
Theme URI: https://primevisaservices.co.uk/
Author: Prime Visa Services
Description: Custom WordPress theme for Prime Visa Services - exact replica of HTML site
Version: 1.0
*/

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700&family=Nunito:wght@600;700;800&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #06A3DA;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #091E3E;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Heebo', sans-serif; color: #6c757d; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===== SPINNER ===== */
#spinner { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 9999; display: flex; align-items: center; justify-content: center; }
#spinner.show { display: flex; }
#spinner.hide { display: none; }
.spinner-border { width: 3rem; height: 3rem; border: .25em solid var(--primary); border-right-color: transparent; border-radius: 50%; animation: spin .75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== TOP BAR ===== */
.topbar { background: var(--dark); padding: 10px 0; font-size: 14px; color: #fff; }
.topbar a { color: #fff; margin-right: 15px; }
.topbar .social a { margin-left: 10px; margin-right: 0; }

/* ===== NAVBAR ===== */
.navbar { background: var(--primary) !important; padding: 15px 0; }
.navbar-brand { font-size: 28px; font-weight: 800; color: #fff !important; font-family: 'Nunito', sans-serif; }
.navbar-brand span { color: var(--secondary); }
.navbar .nav-link { color: #fff !important; font-weight: 500; padding: 8px 15px !important; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--secondary) !important; }
.navbar .dropdown-menu { border: none; border-radius: 8px; box-shadow: 0 5px 30px rgba(0,0,0,0.1); }
.navbar .dropdown-item:hover { background: var(--primary); color: #fff; }
.btn-quote { background: var(--secondary); color: #fff !important; border-radius: 30px; padding: 8px 25px !important; font-weight: 600; }
.btn-quote:hover { background: #e06b44; }

/* ===== HERO / CAROUSEL ===== */
.hero-carousel { position: relative; }
.carousel-item { position: relative; }
.carousel-item img { width: 100%; height: 600px; object-fit: cover; }
.carousel-caption-custom { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: #fff; width: 90%; max-width: 800px; }
.carousel-caption-custom .badge-pill { background: var(--primary); color: #fff; padding: 8px 20px; border-radius: 30px; font-size: 14px; display: inline-block; margin-bottom: 15px; }
.carousel-caption-custom h1 { font-size: 48px; font-weight: 800; font-family: 'Nunito', sans-serif; color: #fff; margin-bottom: 20px; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
.carousel-caption-custom p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.carousel-caption-custom .btn { background: var(--secondary); color: #fff; border-radius: 30px; padding: 12px 35px; font-weight: 600; font-size: 16px; }
.carousel-caption-custom .btn:hover { background: #e06b44; }
.carousel-control-prev, .carousel-control-next { width: 50px; height: 50px; background: var(--primary); border-radius: 50%; top: 50%; transform: translateY(-50%); }

/* ===== FLOATING FORM ===== */
.floating-form { position: relative; z-index: 10; margin-top: -80px; }
.floating-form .card { border: none; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); }
.floating-form .card-header { background: var(--primary); color: #fff; border-radius: 15px 15px 0 0; padding: 20px 25px; }
.floating-form .card-header h4 { margin: 0; font-weight: 700; }
.floating-form .card-header p { margin: 5px 0 0; font-size: 14px; opacity: 0.9; }
.floating-form .card-body { padding: 25px; }
.floating-form .form-select, .floating-form .form-control { border-radius: 8px; padding: 10px 15px; border: 1px solid #ddd; font-size: 14px; }
.floating-form .form-label { font-weight: 600; font-size: 13px; color: var(--dark); margin-bottom: 5px; }
.floating-form .btn-submit { background: var(--primary); color: #fff; width: 100%; padding: 12px; border-radius: 8px; font-weight: 600; font-size: 16px; border: none; cursor: pointer; }
.floating-form .btn-submit:hover { background: #0590c2; }

/* ===== SECTION TITLES ===== */
.section-title { margin-bottom: 50px; }
.section-title .badge-sub { background: var(--primary); color: #fff; padding: 6px 18px; border-radius: 30px; font-size: 13px; display: inline-block; margin-bottom: 12px; }
.section-title h2 { font-size: 38px; font-weight: 800; color: var(--dark); font-family: 'Nunito', sans-serif; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 80px 0; }
.about-section .about-img { position: relative; }
.about-section .about-img img.img-main { width: 100%; border-radius: 10px; }
.about-section .about-img img.img-small { position: absolute; bottom: -30px; right: -20px; width: 200px; border-radius: 10px; border: 5px solid #fff; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.about-section .stats { background: var(--dark); color: #fff; border-radius: 10px; padding: 20px; text-align: center; margin-top: 30px; }
.about-section .stats h3 { font-size: 42px; font-weight: 800; color: var(--primary); }
.about-section .check-list li { padding: 5px 0; color: var(--dark); }
.about-section .check-list li i { color: var(--primary); margin-right: 10px; }

/* ===== FEATURES ===== */
.features-section { padding: 60px 0; background: var(--light); }
.feature-card { background: #fff; border-radius: 12px; padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: .3s; height: 100%; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.feature-card img.feature-img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }
.feature-card .icon-badge { width: 60px; height: 60px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.feature-card .icon-badge img { width: 30px; }
.feature-card h4 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature-card p { font-size: 14px; line-height: 1.7; }
.feature-card a { color: var(--primary); font-weight: 600; font-size: 14px; }
.feature-card a:hover { color: var(--secondary); }

/* ===== SERVICES ===== */
.services-section { padding: 80px 0; }
.service-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: .3s; margin-bottom: 30px; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.15); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card .card-body { padding: 25px; }
.service-card .badge-overlay { background: var(--primary); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 12px; display: inline-block; margin-bottom: 10px; }
.service-card h4 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 14px; line-height: 1.7; }
.service-card a.explore { color: var(--primary); font-weight: 600; }

/* ===== EXPERT SERVICES LIST ===== */
.expert-services { padding: 80px 0; background: var(--light); }
.expert-item { background: #fff; border-radius: 10px; padding: 25px; margin-bottom: 20px; box-shadow: 0 3px 15px rgba(0,0,0,0.05); }
.expert-item h5 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.expert-item p { font-size: 14px; }
.expert-item a { color: var(--secondary); font-weight: 600; font-size: 13px; }

/* ===== DESTINATIONS ===== */
.destinations-section { padding: 80px 0; }
.dest-item { text-align: center; padding: 20px; }
.dest-item .flag { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin: 0 auto 10px; }
.dest-item h6 { font-weight: 700; color: var(--dark); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 0; background: var(--light); }
.testimonial-card { background: #fff; border-radius: 12px; padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.testimonial-card .stars { color: #ffc107; margin-bottom: 15px; }
.testimonial-card p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 20px; }
.testimonial-card .author img { width: 50px; height: 50px; border-radius: 50%; margin-right: 15px; }
.testimonial-card .author h6 { font-weight: 700; color: var(--dark); margin: 0; }
.testimonial-card .author small { color: var(--primary); }

/* ===== OFFICES ===== */
.offices-section { padding: 80px 0; }
.office-card { border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); margin-bottom: 30px; }
.office-card img { width: 100%; height: 200px; object-fit: cover; }
.office-card .card-body { padding: 20px; background: #fff; }
.office-card h4 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.office-card a { color: var(--primary); font-size: 14px; display: block; margin-bottom: 5px; }
.office-card p { font-size: 13px; color: #888; }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 0; }
.contact-info-card { background: var(--dark); color: #fff; border-radius: 12px; padding: 30px; }
.contact-info-card h4 { font-weight: 700; margin-bottom: 20px; font-size: 22px; }
.contact-info-item { display: flex; align-items: flex-start; margin-bottom: 20px; }
.contact-info-item .icon { width: 45px; height: 45px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; }
.contact-info-item h6 { margin: 0 0 5px; font-weight: 600; }
.contact-info-item p, .contact-info-item a { color: rgba(255,255,255,0.8); font-size: 14px; margin: 0; }
.contact-form-card { background: #fff; border-radius: 12px; padding: 35px; box-shadow: 0 5px 30px rgba(0,0,0,0.08); }
.contact-form-card h4 { font-weight: 700; color: var(--dark); margin-bottom: 25px; }
.contact-form-card .form-control, .contact-form-card .form-select { border-radius: 8px; padding: 12px 15px; border: 1px solid #e0e0e0; font-size: 14px; margin-bottom: 15px; }
.contact-form-card textarea { height: 120px; resize: none; }
.contact-form-card .btn-send { background: var(--primary); color: #fff; padding: 12px 35px; border-radius: 30px; font-weight: 600; border: none; cursor: pointer; }
.contact-form-card .btn-send:hover { background: #0590c2; }
.contact-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; margin-right: 8px; transition: .3s; }
.contact-social a:hover { background: var(--primary); }

/* ===== PAGE HEADER ===== */
.page-header { background: linear-gradient(rgba(9,30,62,0.8), rgba(9,30,62,0.8)), url('https://primevisaservices.co.uk/img/carousel-1.jpg') center/cover; padding: 80px 0; text-align: center; color: #fff; }
.page-header h2 { font-size: 42px; font-weight: 800; font-family: 'Nunito', sans-serif; }
.breadcrumb { justify-content: center; background: none; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
footer h4 { color: #fff; font-weight: 700; margin-bottom: 25px; font-size: 18px; }
footer a { color: rgba(255,255,255,0.7); display: block; margin-bottom: 8px; font-size: 14px; transition: .3s; }
footer a:hover { color: var(--primary); padding-left: 5px; }
footer .footer-bottom { background: rgba(255,255,255,0.05); padding: 20px 0; margin-top: 40px; text-align: center; font-size: 13px; }
footer .newsletter input { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 30px; padding: 10px 20px; width: 100%; outline: none; font-size: 14px; }
footer .newsletter input::placeholder { color: rgba(255,255,255,0.5); }
footer .newsletter button { background: var(--primary); color: #fff; border: none; border-radius: 30px; padding: 10px 20px; margin-top: 10px; cursor: pointer; font-size: 14px; }
footer .newsletter button:hover { background: var(--secondary); }
footer .social-links { display: flex; gap: 10px; margin-top: 10px; }
footer .social-links a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; color: #fff; margin: 0; padding: 0; }
footer .social-links a:hover { background: var(--primary); padding-left: 0; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 45px; height: 45px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; opacity: 0; visibility: hidden; transition: .3s; }
.back-to-top.active { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--secondary); color: #fff; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 85px; right: 30px; width: 50px; height: 50px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; font-size: 24px; box-shadow: 0 5px 20px rgba(37,211,102,0.4); }
.whatsapp-float:hover { background: #1da851; color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .carousel-caption-custom h1 { font-size: 28px; }
    .carousel-item img { height: 400px; }
    .floating-form { margin-top: 0; }
    .section-title h2 { font-size: 28px; }
    .about-section .about-img img.img-small { display: none; }
}
