/* ========================================
   Care and Companionship with Emma - Styles
   ======================================== */

/* === Variables === */
:root {
    --primary-bg: #0d0d2c;
    --primary-pink: #fe66c4;
    --secondary-blue: #1e87c1;
    --text-white: #ffffff;
    --text-light-gray: #e0e0e0;
    --header-font: 'Quicksand', sans-serif;
    --body-font: 'PT Sans', sans-serif;
}

/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    max-width: 100vw;
}

body {
    font-family: var(--body-font);
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 100vw;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-blue);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
}

/* === Buttons === */
.btn-primary {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--text-white);
    font-family: var(--header-font);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 102, 196, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: var(--text-white);
    font-family: var(--header-font);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 135, 193, 0.4);
}

/* === Header === */
.site-header {
    background-color: rgba(13, 13, 44, 1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--header-font);
    color: var(--primary-pink) !important;
    font-weight: 600;
    font-size: 1.2rem;
}

.navbar-brand .logo {
    height: 60px;
    width: auto;
}

.navbar-brand .brand-text {
    display: none;
}

.navbar-nav {
    align-items: center;
    gap: 10px;
}

.nav-link {
    color: var(--text-white) !important;
    font-family: var(--header-font);
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-pink) !important;
}

.dropdown-menu {
    background-color: rgba(13, 13, 44, 0.98);
    border: 2px solid var(--primary-pink);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    color: var(--text-white);
    font-family: var(--body-font);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-pink);
    color: var(--text-white);
}

.nav-btn {
    margin-left: 15px;
    padding: 10px 25px !important;
}

.nav-btn::after {
    display: none;
}

.navbar-toggler {
    border-color: var(--primary-pink);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fe66c4' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === Main Content === */
main {
    min-height: 60vh;
}

/* === Section Styling === */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light-gray);
    font-size: 1.1rem;
}

/* === Accreditations Bar === */
.accreditations-bar {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-blue) 100%);
    padding: 30px 0;
    margin-top: 0;
}

.accreditation-item {
    text-align: center;
}

.accreditation-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.accreditation-badge i {
    font-size: 2rem;
    color: var(--primary-bg);
}

.accreditation-badge span {
    font-family: var(--header-font);
    font-weight: 600;
    color: var(--primary-bg);
    font-size: 0.95rem;
    text-align: center;
}

/* === Logo Links Bar === */
.logo-links-bar {
    background-color: var(--primary-bg);
    padding: 40px 0;
    border-bottom: 2px solid rgba(254, 102, 196, 0.2);
}

.logo-link {
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    padding: 15px;
}

.logo-link:hover {
    transform: translateY(-5px);
}

.accreditation-logo {
    max-width: 100%;
    object-fit: contain;
}

.logo-link:hover .accreditation-logo {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--primary-pink));
}

/* === Footer === */
.site-footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 50px 0 20px;
    margin-top: 0;
    border-top: 3px solid var(--primary-pink);
}

.site-footer h3 {
    color: var(--primary-pink);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.site-footer p {
    color: var(--text-light-gray);
    margin-bottom: 10px;
}

.tagline {
    color: var(--secondary-blue);
    font-style: italic;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light-gray);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-contact a,
.footer-contact span {
    color: var(--text-light-gray);
}

.footer-contact a:hover {
    color: var(--primary-pink);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(254, 102, 196, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--secondary-blue);
}

.footer-bottom a:hover {
    color: var(--primary-pink);
}

.credit {
    font-size: 0.85rem;
}

/* === Responsive Design === */
@media (min-width: 992px) {
    .navbar-brand .brand-text {
        display: inline;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(13, 13, 44, 0.98);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        border: 2px solid var(--primary-pink);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .accreditation-badge span {
        font-size: 0.85rem;
    }
    
    .accreditation-badge i {
        font-size: 1.5rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .accreditation-logo {
        height: 60px;
    }
    
    .logo-links-bar {
        padding: 30px 0;
    }
}

/* === Utility Classes === */
.text-pink {
    color: var(--primary-pink);
}

.text-blue {
    color: var(--secondary-blue);
}

.bg-dark-section {
    background-color: rgba(0, 0, 0, 0.2);
}

.bg-gradient {
    background: linear-gradient(to left, rgba(254, 102, 196, .85) 0%, rgba(30, 135, 193, .85) 100%), url(/media/ew3iiy3m/pembs-bridge.jpg) !important;
    background-position: center !important;
    background-size: cover !important;
}

.border-pink {
    border-color: var(--primary-pink) !important;
}

.border-blue {
    border-color: var(--secondary-blue) !important;
}
/* ========================================
   Homepage Specific Styles
   ======================================== */

/* === Hero Section === */
.hero-section {
    position: relative;
    margin-top: -20px;
    padding: 0;
}

.hero-section .carousel-item {
    height: 700px;
    position: relative;
}

.hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-section .carousel-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    bottom: auto;
}

.hero-section .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.hero-section .carousel-caption .lead {
    font-size: 1.5rem;
    color: var(--text-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: var(--primary-pink);
    border: 2px solid var(--text-white);
    padding: 0 !important;
    margin: 0 5px !important;
    flex: 0 0 12px !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-size: 50%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    opacity: 1;
}

/* === Welcome Section === */
.welcome-section {
    padding: 80px 0;
}

.welcome-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.welcome-section .lead {
    font-size: 1.3rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.welcome-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    border: 5px solid var(--primary-pink);
}

.welcome-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--secondary-blue);
    border-radius: 5px;
    z-index: -1;
}

.signature {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signature-img {
    max-width: 117px;
    height: auto;
}

.signature-name {
    font-family: var(--header-font);
    color: var(--primary-pink);
    margin: 0;
}

.signature-name strong {
    font-size: 1.3rem;
    display: block;
}

.signature-name em {
    color: var(--secondary-blue);
    font-size: 0.95rem;
}

/* === Services Section === */
.services-section {
    padding: 80px 0;
}

.service-card {
    background: linear-gradient(135deg, rgba(254, 102, 196, 0.1) 0%, rgba(30, 135, 193, 0.1) 100%);
    border: 2px solid var(--primary-pink);
    border-radius: 15px;
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(254, 102, 196, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-blue);
    box-shadow: 0 10px 30px rgba(254, 102, 196, 0.3);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 13px 13px 0 0;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 60px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    text-align: center;
    align-items: center;
}

.service-icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-white);
    border: 5px solid var(--primary-bg);
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(30, 135, 193, 0.4);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-blue) 100%);
    transform: translateX(-50%) scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(254, 102, 196, 0.6);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-pink);
    text-align: center;
}

.service-card p {
    color: var(--text-light-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
    text-align: center;
}

.service-card .btn {
    position: relative;
    z-index: 2;
}

/* === Testimonials Section === */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(30, 135, 193, 0.15) 0%, rgba(254, 102, 196, 0.15) 100%);
    border: 3px solid var(--primary-pink);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-pink);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    margin-top: 20px;
}

.author-name {
    font-size: 1.2rem;
    color: var(--primary-pink);
    margin-bottom: 5px;
}

.author-relationship {
    font-size: 0.95rem;
    color: var(--secondary-blue);
    margin-bottom: 0;
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-color: var(--primary-pink);
    padding: 25px;
    border-radius: 50%;
}

#testimonialCarousel .carousel-indicators {
    margin-bottom: -50px;
}

#testimonialCarousel .carousel-indicators button {
    background-color: var(--secondary-blue);
}

#testimonialCarousel .carousel-indicators button.active {
    background-color: var(--primary-pink);
}

/* === Gallery Section === */
.gallery-section {
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 102, 196, 0.9) 0%, rgba(30, 135, 193, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--text-white);
}

/* === Contact Section === */
.contact-section {
    padding: 80px 0;
}

.contact-info-box,
.contact-form-box {
    background: rgba(30, 135, 193, 0.1);
    border: 2px solid var(--secondary-blue);
    border-radius: 15px;
    padding: 40px;
    height: 100%;
}

.contact-info-box h3,
.contact-form-box h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--text-white);
}

.contact-text h4 {
    font-size: 1.1rem;
    color: var(--primary-pink);
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0;
    color: var(--text-light-gray);
}

.contact-text a {
    color: var(--text-white);
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--primary-pink);
}

.emergency-notice {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.emergency-notice i {
    font-size: 2rem;
    color: #ffc107;
}

.emergency-notice p {
    margin: 0;
    color: var(--text-white);
}

.contact-form-box .form-label {
    color: var(--text-white);
    font-family: var(--header-font);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    background-color: rgba(13, 13, 44, 0.8);
    border: 2px solid rgba(254, 102, 196, 0.3);
    color: var(--text-white);
    padding: 12px 15px;
    border-radius: 8px;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    background-color: rgba(13, 13, 44, 0.9);
    border-color: var(--primary-pink);
    color: var(--text-white);
    box-shadow: 0 0 0 0.25rem rgba(254, 102, 196, 0.25);
}

.contact-form-box .form-check-input {
    background-color: rgba(13, 13, 44, 0.8);
    border: 2px solid rgba(254, 102, 196, 0.3);
}

.contact-form-box .form-check-input:checked {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.contact-form-box .form-check-label {
    color: var(--text-light-gray);
}

.contact-form-box .form-check-label a {
    color: var(--secondary-blue);
}

.invalid-feedback {
    color: #ff6b6b;
}

/* === Why Choose Section === */
.why-choose-section {
    padding: 80px 0;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(254, 102, 196, 0.05);
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    border-color: var(--primary-pink);
    transform: translateY(-5px);
    background: rgba(254, 102, 196, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.feature-box h4 {
    color: var(--primary-pink);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-box p {
    color: var(--text-light-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* === Responsive Adjustments === */
@media (max-width: 991px) {
    .hero-section .carousel-item {
        height: 500px;
    }
    
    .hero-section .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .carousel-caption .lead {
        font-size: 1.2rem;
    }
    
    .welcome-section {
        padding: 60px 0;
    }
    
    .welcome-image {
        margin-top: 40px;
    }
    
    .welcome-image::before {
        display: none;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .hero-section .carousel-item {
        height: 400px;
    }
    
    .hero-section .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .hero-section .carousel-caption .lead {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: auto;
        margin: 0 auto;
        font-size: 14px;
        padding: 6px 15px;
    }
    
    .contact-section .animate-on-scroll + .animate-on-scroll {
        margin-top: 30px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-section .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .welcome-section h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 0;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 50px 20px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        top: -40px;
    }
}
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next
{
  align-items: end;
  margin-bottom: 10px;
}

/* ========================================
   Cookie Consent Banner Styles
   ======================================== */

/* === Cookie Consent Banner === */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(13, 13, 44, 0.98) 0%, rgba(30, 135, 193, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary-pink);
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 2rem;
    color: var(--primary-pink);
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-pink);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    color: var(--text-white);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    white-space: nowrap;
    min-width: 100px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .cookie-consent {
        padding: 15px 0;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text i {
        font-size: 1.5rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-buttons .btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        max-width: 100%;
    }
}
