/* Personal Concierge Service - Main CSS */
/* Color Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    --highlight-color: #f39c12;
    --neutral-color: #95a5a6;
    --light-primary: #ecf0f1;
    --dark-primary: #1a252f;
    --gradient-primary: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --gradient-accent: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-muted: #7f8c8d;
}

/* Base Typography - Conservative Sizes */
body {
  overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-primary);
}

h1 { font-size: 2.2rem; font-weight: 700; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.3rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

.navbar-brand { font-size: 1.4rem !important; font-weight: 700; }

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Header Styles */
.navbar {
    background: var(--gradient-primary) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--text-light) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--highlight-color) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--light-primary);
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-price {
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: white;
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 5px solid var(--primary-color);
}

/* Contact Form */
.contact-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--text-light);
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.form-control {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 5px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
}

.btn-primary {
    background: var(--gradient-accent);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--gradient-accent);
}

/* Footer */
.footer {
    background: var(--dark-primary);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--highlight-color);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-primary);
}

.faq-item {
    background: white;
    border-radius: 5px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem;
    margin: 0;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
}

.faq-answer {
    padding: 1rem;
    display: none;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: white;
}

.gallery-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb-section {
    background: var(--light-primary);
    padding: 1rem 0;
}

.breadcrumb-img {
    height: 30px;
    width: auto;
}

/* Utility Classes */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.section-desc {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.py-5 { padding: 3rem 0; }

/* Swiper Styles */
.swiper-container {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
} 