/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1e3a8a;
}

.phone-btn {
    background: #fbbf24;
    color: #1e3a8a !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
}

.phone-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
    padding: 100px 0 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(30, 58, 138, 0.05));
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(251, 191, 36, 0.03));
}

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

.hero-text-section {
    padding-left: 2rem;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    color: #1e3a8a;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 2px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.1);
}

.intro-badge i {
    color: #f59e0b;
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.title-accent {
    color: #1e3a8a;
    position: relative;
}

.title-accent {
    color: #1e3a8a;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #fbbf24;
    border-radius: 1px;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: #1e3a8a;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

.hero-visual-section {
    position: relative;
    padding: 2rem;
}

.hero-image-stack {
    position: relative;
}

.hero-main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: #1e3a8a;
    min-height: 600px;
}

.hero-main-image img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    object-position: center;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(251, 191, 36, 0.95);
    color: #1e3a8a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.hero-service-cards {
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.service-card-mini {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.service-card-mini i {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 8px;
    border-radius: 8px;
    display: inline-block;
}

.service-card-mini span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1rem;
}

.btn-primary {
    background: #fbbf24;
    color: #1e3a8a;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(230, 126, 34, 0.1);
    z-index: 1;
}

.hero-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    z-index: 2;
}

.hero-contact-card {
    position: absolute;
    bottom: -40px;
    right: 2rem;
    background: white;
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    max-width: 300px;
}

.hero-contact-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.address-info,
.hours-info {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.address-info i {
    color: #1e3a8a;
    margin-right: 0.5rem;
}

/* Section Styles */
.section {
    padding: 30px 0;
}

.bg-light {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    margin-top: 2rem;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text .intro-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e3a8a;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Premium Services Grid */
.services-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.service-premium-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
    position: relative;
    overflow: hidden;
}

.service-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #fbbf24);
}

.service-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.12);
}

.service-premium-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.service-icon-wrapper.spa {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.service-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.service-premium-card h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0;
}

.service-premium-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(30, 58, 138, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(30, 58, 138, 0.08);
    transform: translateX(8px);
}

.feature-item i {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
}

.service-features ul {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    font-size: 1rem;
    color: #27ae60;
}

/* Services FAQ Section */
.services-faq-section {
    margin-top: 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-header h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.faq-header h3 i {
    color: #fbbf24;
}

.faq-header p {
    color: #64748b;
    font-size: 1rem;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* FAQ Accordion Styles */
.faq-accordion {
    text-align: left;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
    background: #f8fafc;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #1e3a8a;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question .icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Services Booking Section */
.services-booking-section {
    text-align: center;
}

.booking-card {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 0.4; }
}

.booking-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.booking-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.booking-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-book-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
    position: relative;
    z-index: 2;
}

.btn-book-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.btn-book-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-book-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Services Row Layout */
.services-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.service-column {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 4rem;
    color: #1e3a8a;
}

.service-column h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-intro {
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid #eee;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: #1e3a8a;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Premium Team Section */
.team-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-member-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
    position: relative;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(30, 58, 138, 0.15);
}

.team-member-image {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem 1rem 0;
}

.team-member-image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    border: 3px solid #f1f5f9;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.12);
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.05);
    border-color: #fbbf24;
}



.team-member-content {
    padding: 0 1.5rem 1.5rem;
}

.team-member-header {
    margin-bottom: 1rem;
    text-align: center;
}

.team-member-header h3 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.position {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member-bio {
    margin-bottom: 0;
}

.team-member-bio p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.highlight-quote {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05));
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border-left: 3px solid #fbbf24;
    font-style: italic;
    color: #1e3a8a !important;
    font-weight: 500;
    margin-bottom: 0.8rem !important;
}

.pets-info {
    background: rgba(30, 58, 138, 0.05);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    color: #1e3a8a !important;
    font-size: 0.85rem !important;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0 !important;
}

.pets-info i {
    color: #fbbf24;
}



/* Gallery Slider Section */
.gallery-slider-container {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
    overflow: hidden;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 58, 138, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #1e3a8a;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #1e3a8a;
    transform: scale(1.2);
}

.dot:hover {
    background: #fbbf24;
}

.slider-info {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.slider-info p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-gallery-book {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

.btn-gallery-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    font-size: 2rem;
    color: #1e3a8a;
    margin-top: 0.5rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #1e3a8a;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.booking-section {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    height: fit-content;
}

.booking-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-contact-card {
        position: static;
        margin: 2rem 1rem 0;
        max-width: none;
        width: calc(100% - 2rem);
    }
}

@media (max-width: 968px) {
    /* Hide contact card on mobile */
    .hero-contact-card {
        display: none;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text-section {
        padding-left: 1rem;
        text-align: center;
    }
    
    .hero-visual-section {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-service-cards {
        position: static;
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .services-premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-faq-section {
        padding: 2rem;
    }
    
    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    /* Hide contact card on mobile */
    .hero-contact-card {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 60px 0 30px;
        min-height: auto;
        position: relative;
    }
    
    .hero .container {
        padding: 0;
        max-width: 100%;
    }
    
    .hero-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .hero-text-section {
        padding: 1rem;
        text-align: center;
        order: 2;
        width: 100%;
    }
    
    .hero-visual-section {
        padding: 1rem;
        order: 1;
        width: 100%;
    }
    
    .hero-intro {
        margin-bottom: 0.5rem;
    }
    
    .intro-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 0.5rem;
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        text-align: center;
        padding: 14px 24px;
        font-size: 0.95rem;
        width: auto;
        max-width: 100%;
    }
    
    .hero-contact-card .btn-hero-secondary {
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-main-image {
        min-height: 300px;
        margin-top: 2rem;
    }
    
    .hero-main-image img {
        height: 300px;
    }
    
    .hero-service-cards {
        position: static;
        margin-top: 1rem;
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .service-card-mini {
        padding: 0.8rem;
    }
    
    .service-card-mini i {
        font-size: 1.2rem;
        padding: 6px;
    }
    
    .service-card-mini span {
        font-size: 0.7rem;
    }
    

    
    .hero-contact-card h3 {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .address-info,
    .hours-info {
        text-align: center;
        font-size: 0.85rem;
        margin: 0.8rem 0;
    }
    
    .contact-card-content {
        text-align: center;
        width: 100%;
    }
    
    .services-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member-content {
        padding: 2rem;
    }
    
    .team-member-header h3 {
        font-size: 1.5rem;
    }
    
    .team-member-image img {
        width: 150px;
        height: 150px;
    }
    
    .gallery-slider {
        height: 300px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
    
    .slider-info {
        padding: 1.5rem;
    }
    
    .slider-info p {
        font-size: 1rem;
    }
    
    .stats {
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Hide contact card on mobile */
    .hero-contact-card {
        display: none;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 60px 0 30px;
    }
    
    .hero-main-image {
        margin-top: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .stat-item {
        flex: none;
        width: auto;
    }
    
    .intro-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero .container {
        padding: 0;
    }
    
    .hero-wrapper {
        padding: 0 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 15px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    
    /* Ensure proper mobile layout */
    .service-card,
    .team-member,
    .gallery-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Fix any margin issues that could cause horizontal scroll */
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
    }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
    .hero-contact-card {
        display: none;
    }
    
    .hero-text-section,
    .hero-visual-section {
        padding: 0.5rem;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
}

