/* ==========================================
   SCOPE MESSAGES - Custom Styles
   Modern & Sophisticated Design
   ========================================== */

/* Import Variables */
:root {
    --primary-color: #2489bf;
    --primary-light: #5ba3c7;
    --primary-dark: #1a6a9f;
    --secondary-color: #2c3e50;
    --accent-color: #f4a261;
    --customer-blue: #2489bf;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-white: #FFFFFF;
    --bg-light: #f8f9fa;
    --bg-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #2489bf 0%, #5ba3c7 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #1a6a9f 100%);
    --gradient-accent: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    --shadow-sm: 0 2px 8px rgba(36, 137, 191, 0.1);
    --shadow-md: 0 4px 16px rgba(36, 137, 191, 0.2);
    --shadow-lg: 0 8px 32px rgba(36, 137, 191, 0.25);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    background: var(--customer-blue) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(36, 137, 191, 0.98) !important;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white) !important;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    transition: var(--transition);
}

.brand-logo:hover .brand-icon {
    transform: rotate(5deg) scale(1.1);
}

.brand-logo span {
    letter-spacing: 0.5px;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white) !important;
}

.nav-cta {
    background-color: var(--customer-blue) !important;
    color: var(--text-white) !important;
    border: none !important;
    border-radius: 30px;
    padding: 0.5rem 1.5rem !important;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=1920&h=1080&fit=crop') center center/cover no-repeat;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 137, 191, 0.45) 0%, rgba(26, 106, 159, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-white);
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary {
    background: var(--customer-blue);
    border: none;
    color: var(--text-white);
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(36, 137, 191, 0.3);
}

.btn-outline-light {
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: 2px solid var(--text-white);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--customer-blue);
    border-color: var(--customer-blue);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* ==========================================
   SECTION STYLES
   ========================================== */

.services-section {
    background-color: var(--bg-light);
}

.about-section {
    background-color: var(--bg-white);
}

.testimonials-section {
    background-color: var(--bg-light);
}

.contact-section {
    background-color: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--customer-blue);
    box-shadow: 0 6px 20px rgba(36, 137, 191, 0.4);
}

.service-card:hover .service-icon i {
    color: var(--text-white);
}

.service-title {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-light);
    gap: 1rem;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--customer-blue) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(36, 137, 191, 0.3);
}

.experience-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-content {
    padding: 2rem;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--customer-blue);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.8rem;
    color: var(--text-white);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.author-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-info {
    padding: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--customer-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(36, 137, 191, 0.4);
}

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

.contact-text h5 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.contact-text p a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-text p a:hover {
    color: var(--customer-blue);
    text-decoration: underline;
}

.social-links h5 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--customer-blue);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(36, 137, 191, 0.3);
}

.social-icon i {
    font-size: 1.3rem;
}

.contact-form-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-control {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-control:focus {
    border-color: var(--customer-blue);
    box-shadow: 0 0 0 0.2rem rgba(36, 137, 191, 0.15);
    background: var(--bg-white);
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--customer-blue);
    color: var(--text-white);
    padding: 4rem 0 1.5rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

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

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--text-white);
    padding-left: 5px;
    text-decoration: underline;
}

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

.footer-info li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-info li a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--customer-blue);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(36, 137, 191, 0.3);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
}

.back-to-top.show {
    display: flex;
}

.back-to-top i {
    font-size: 1.5rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Large Devices (992px to 1199px) */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 1rem;
    }
    
    .experience-number {
        font-size: 2rem;
    }
}

/* Small Devices (576px to 767px) */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Small Devices (575px and down) */
@media (max-width: 575.98px) {
    body {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .contact-form-container {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
}