/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0A65FF;
    --light-silver: #F4F6F9;
    --dark-grey: #222222;
    --white: #FFFFFF;
    --text-grey: #666666;
    --border-color: #E5E5E5;
    --success-green: #27AE60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-grey);
    background-color: var(--white);
    line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark-grey);
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--dark-grey);
}

p {
    font-size: 1rem;
    color: var(--text-grey);
    margin-bottom: 1rem;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0052CC;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--light-silver);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 0;
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-grey);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-grey);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-grey);
    margin: 5px 0;
    transition: 0.3s;
}

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

.hero {
    background: linear-gradient(135deg, rgba(10, 101, 255, 0.1) 0%, rgba(10, 101, 255, 0.05) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 101, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    right: -100px;
    top: -50px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h2 {
    font-size: 3rem;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
}

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

/* ============================================
   CATEGORIES SECTION
   ============================================ */

.categories {
    padding: 80px 20px;
    background-color: var(--light-silver);
}

.categories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
}

.category-card a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-card a:hover {
    color: #0052CC;
}

/* ============================================
   WHY CHOOSE ME SECTION
   ============================================ */

.why-choose {
    padding: 80px 20px;
    background-color: var(--white);
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-silver);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-card:hover .feature-number {
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-grey);
}

.feature-card:hover p {
    color: var(--white);
}

/* ============================================
   POPULAR PLANS SECTION
   ============================================ */

.popular-plans {
    padding: 80px 20px;
    background-color: var(--light-silver);
}

.popular-plans h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.plan-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 8px 0;
    color: var(--text-grey);
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:before {
    content: "✓ ";
    color: var(--success-green);
    font-weight: 700;
    margin-right: 8px;
}

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

.testimonials {
    padding: 80px 20px;
    background-color: var(--white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.testimonial-card {
    background-color: var(--light-silver);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

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

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background-color: var(--white);
    color: var(--primary-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* ============================================
   QUICK ENQUIRY FORM SECTION
   ============================================ */

.quick-enquiry {
    padding: 80px 20px;
    background-color: var(--light-silver);
}

.quick-enquiry h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.enquiry-form {
    max-width: 700px;
    margin: 2rem auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-grey);
}

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

.services-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-silver);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    scroll-margin-top: 100px;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-grey);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:before {
    content: "✓ ";
    color: var(--success-green);
    font-weight: 700;
    margin-right: 8px;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, rgba(10, 101, 255, 0.1) 0%, rgba(10, 101, 255, 0.05) 100%);
    padding: 60px 20px;
    text-align: center;
}

.page-header h2 {
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-grey);
}

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

.about-intro {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(10, 101, 255, 0.1) 0%, rgba(10, 101, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    border: 2px dashed var(--primary-blue);
}

.about-content h2 {
    margin-bottom: 0.5rem;
}

.highlight {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.credentials,
.specializations {
    list-style: none;
    margin: 1.5rem 0;
}

.credentials li,
.specializations li {
    padding: 10px 0;
    color: var(--text-grey);
}

.specializations li {
    border-top: 1px solid var(--border-color);
}

.specializations strong {
    color: var(--dark-grey);
}

.cta-buttons {
    margin-top: 2rem;
}

/* ============================================
   APPROACH SECTION
   ============================================ */

.approach-section {
    padding: 80px 20px;
    background-color: var(--light-silver);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0052CC 100%);
    color: var(--white);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ============================================
   JOURNEY SECTION
   ============================================ */

.journey-section {
    padding: 80px 20px;
    background-color: var(--light-silver);
}

.timeline {
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-blue);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: 50%;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 50%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 30px;
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-blue);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    top: 0;
    z-index: 10;
}

.timeline-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

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

.contact-info-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background-color: var(--light-silver);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #0052CC;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-top: 0.5rem;
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    height: 300px;
    background: linear-gradient(135deg, rgba(10, 101, 255, 0.1) 0%, rgba(10, 101, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.map-placeholder {
    font-size: 1.2rem;
    color: var(--text-grey);
}

.map-placeholder p {
    margin: 10px 0;
}

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

.contact-form-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--light-silver);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-grey);
}

.checkbox-label input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

#formMessage {
    text-align: center;
    margin-top: 1.5rem;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

#formMessage.success {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--success-green);
    display: block;
    border: 1px solid var(--success-green);
}

#formMessage.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #E74C3C;
    display: block;
    border: 1px solid #E74C3C;
}

/* ============================================
   OFFICE HOURS & FAQ
   ============================================ */

.office-hours-section {
    padding: 60px 20px;
    background-color: var(--light-silver);
}

.office-hours-section h2 {
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 2rem auto;
}

.hours-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.hours-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.faq-section h2 {
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 2rem auto;
}

.faq-item {
    background-color: var(--light-silver);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.faq-item h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

/* ============================================
   TESTIMONIALS GRID
   ============================================ */

.testimonials-grid-section {
    padding: 80px 20px;
}

.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-full-card {
    background-color: var(--light-silver);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-blue);
}

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

.testimonial-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(10, 101, 255, 0.1);
}

.testimonial-rating {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.testimonial-name {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.testimonial-city {
    font-size: 0.9rem;
    color: var(--text-grey);
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-stats {
    padding: 80px 20px;
    background-color: var(--light-silver);
}

.stat-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-box h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-grey);
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0052CC 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.certified {
    color: var(--primary-blue);
    font-weight: 600;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

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

.why-services {
    padding: 80px 20px;
    background-color: var(--light-silver);
}

.why-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.reason-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline:before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }

    .timeline-date {
        left: -20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero {
        padding: 40px 15px;
        min-height: 400px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .categories-grid,
    .plans-grid,
    .values-grid,
    .stats-grid,
    .contact-grid,
    .testimonials-full-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }

    .enquiry-form {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
