/* ============================================
   SPEAKING SKILLS TEMPLATE - MAIN STYLES
   ========================================== */

:root {
    /* Primary Color Palette */
    --primary-blue: #2d53ec;
    --primary-blue-light: #67a6ff;
    --primary-blue-dark: #1d5ec7;
    
    --secondary-purple: #853ad7;
    --secondary-purple-light: #b09bff;
    --secondary-purple-dark: #5924aa;
    
    --accent-orange: #d16d16;
    --accent-orange-light: #faac43;
    --accent-orange-dark: #bb531c;
    
    --neutral-slate: #445370;
    --neutral-slate-light: #5a6279;
    --neutral-slate-dark: #2c404e;
    
    --success-green: #0d7e62;
    --success-green-light: #0cba7a;
    --success-green-dark: #008067;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-blue) 100%);
    --gradient-success: linear-gradient(135deg, var(--success-green) 0%, var(--primary-blue) 100%);
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-slate-dark);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb-container {
    min-height: 100px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.breadcrumb-image {
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Typography */
h1 {
    font-size: 2.39rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.00rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.86rem;
}

h3 {
    font-size: 1.54rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.55rem;
}

h4 {
    font-size: 1.37rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.74rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(52, 99, 252, 0.25);
}

.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='rgba%2837, 99, 235, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.navbar-brand {
    font-size: 1.58rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--neutral-slate);
    font-weight: 500;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.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;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../../assets/images/hero-bg.webp') center/cover no-repeat;
    opacity: 0.1;
}

.hero-content {
  padding-top: 50px !important;
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    padding-top: 50px !important;
    font-size: 3rem;
    margin-bottom: 1.74rem;
}

.hero-content p {
    font-size: 1.19rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--neutral-slate);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.66rem;
}

.service-price {
    font-size: 1.56rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-top: 1rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-blue-light);
}

/* Testimonials */
.testimonials-slider {
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: 0 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.62rem;
    color: var(--neutral-slate);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-blue);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--primary-blue-light);
    color: white;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

.faq-question:hover {
    background: var(--primary-blue);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.55rem;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    background: white;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

/* Alternating FAQ backgrounds */
.faq-item:nth-child(even) .faq-question {
    background: var(--secondary-purple-light);
}

.faq-item:nth-child(even) .faq-question:hover {
    background: var(--secondary-purple);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.67rem;
    font-weight: 600;
    color: var(--neutral-slate-dark);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #d7d7d7;
    border-radius: 8px;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;  
    border-color: var(--primary-blue);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: var(--neutral-slate-dark);
    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 h4 {
    color: var(--primary-blue-light);
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #b7c2d1;
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #434c58;
    padding-top: 1rem;
    text-align: center;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary-blue); }
.bg-light { background-color: #f8fafc; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 1rem; }
.d-none { display: none; }

/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
