/* CSS Variables for consistent theming */
:root {
    --primary-green: #1E4D3C;
    --secondary-green: #2D6B56;
    --accent-gold: #C9A05F;
    --accent-lime: #D4FF5C;
    --dark-navy: #0A1F1C;
    --light-gold: #F7F3ED;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #6B7280;
    --dark-gray: #1F2937;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --shadow-light: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-medium: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-heavy: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.08);
    
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

/* Utility classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--dark-navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: var(--accent-lime);
    color: var(--dark-navy);
}

.btn-secondary:hover {
    background: #C4EF4C;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn:active {
    transform: translateY(0);
}

/* Ripple effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}

.btn:active::before {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-medium);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    transition: var(--transition);
}

.header.scrolled .logo {
    font-size: 1.125rem;
}

.nav-menu {
    display: none;
}

.cta-header {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 31, 28, 0.88), rgba(30, 77, 60, 0.82)), 
                url('assets/bghero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 3rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(26, 43, 92, 0.1) 70%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.hero-text h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s 0.2s both;
    line-height: 1.3;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text p {
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    color: rgba(255,255,255,1);
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    animation: fadeInUp 0.8s 0.4s both;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
}

.hero-subtitle .text-highlight {
    color: var(--accent-gold);
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-cta {
    animation: fadeInUp 0.8s 0.6s both;
    margin-top: 2rem;
}

.hero-cta .btn {
    background: var(--accent-lime);
    color: var(--dark-navy);
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(212, 255, 92, 0.35);
}

.hero-cta .btn:hover {
    background: #C4EF4C;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(212, 255, 92, 0.45);
}

/* Problems Section */
.problems-section {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.3) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(245, 230, 211, 0.3) 100%);
    pointer-events: none;
}

.problems-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.problems-header h2 {
    color: var(--dark-navy);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.problem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: var(--transition);
}

.problem-card:hover .problem-icon {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.problem-card p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.problems-conclusion {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.problems-conclusion p {
    color: var(--dark-navy);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.problems-conclusion strong {
    color: var(--primary-green);
    font-weight: 700;
}

.problems-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About SMED Section */
.about-smed {
    background: linear-gradient(180deg, var(--dark-navy) 0%, #0F2E28 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-smed::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-smed::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-smed-content {
    position: relative;
    z-index: 1;
}

.about-smed-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-smed-header h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.about-smed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-smed-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

.about-smed-text p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 100%;
}

.highlight-text {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--accent-gold) !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.main-text {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 500;
}

.description-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.text-emphasis {
    color: var(--accent-gold);
    font-weight: 600;
}

.about-smed-professionals {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 165, 116, 0.3);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.about-smed-professionals h3 {
    color: var(--accent-gold);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.professional-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.1);
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
    min-height: 50px;
}

.professional-badge:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.professional-badge svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.professional-badge span {
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-smed-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Service Section */
/* Services Section */
.services-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

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

.services-header h2 {
    color: var(--dark-navy);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-subtitle {
    color: var(--medium-gray);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-intro {
    text-align: center;
    margin: 3rem 0 2rem;
}

.services-intro p {
    color: var(--dark-navy);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    margin: 0;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid var(--primary-green);
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--accent-gold);
}

.service-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.service-item:hover .service-check {
    background: linear-gradient(135deg, var(--accent-gold), #E5B366);
    transform: scale(1.1);
}

.service-item p {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Highlight Section */
.highlight-section {
    background: var(--dark-navy);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.highlight-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 255, 92, 0.3), transparent);
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.highlight-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.highlight-title {
    color: var(--accent-gold);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.highlight-main {
    color: rgba(255,255,255,0.95);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.highlight-text {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.highlight-emphasis {
    color: var(--accent-gold);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight-emphasis::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
    opacity: 0.5;
}

.highlight-cta {
    margin-top: 2.5rem;
}

/* About Company Section */
.about-company {
    background: var(--white);
    padding: 5rem 0;
}

/* Profile section */
.about-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-profile {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 4rem;
    }
}

.profile-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    max-width: 400px;
    margin: 0 auto;
}

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

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

.profile-content h2 {
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 700;
}

.profile-name {
    color: var(--primary-green);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.profile-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
    transition: var(--transition);
}

.profile-item:hover {
    background: var(--light-gold);
    border-left-color: var(--accent-gold);
    transform: translateX(5px);
}

.profile-item svg {
    flex-shrink: 0;
    color: var(--primary-green);
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.profile-item:hover svg {
    color: var(--accent-gold);
}

.profile-item p {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.about-company-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Plans Section */
.plans-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.plans-header {
    text-align: center;
    margin-bottom: 4rem;
}

.plans-header h2 {
    color: var(--dark-navy);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.plan-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-lime));
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-gold), var(--white));
    border-radius: 50%;
    color: var(--primary-green);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.plan-card:hover .plan-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.plan-card h3 {
    color: var(--dark-navy);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.plan-card p {
    color: var(--medium-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.plans-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--accent-gold);
}

.plans-footer p {
    color: var(--dark-gray);
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    margin: 0;
}

.plans-footer strong {
    color: var(--primary-green);
    font-weight: 700;
}

.plans-cta {
    text-align: center;
    margin-top: 3rem;
}

.profile-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Social Proof Section */
/* Social Proof Section */
.social-proof {
    background: var(--white);
    padding: 6rem 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    color: var(--dark-navy);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-header p {
    color: var(--medium-gray);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-green);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: 50%;
        padding: 3rem 2rem;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        min-width: 33.333%;
    }
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.testimonial-author strong {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-author a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.testimonial-author a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--primary-green);
}

.carousel-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-green);
    opacity: 1;
    transform: scale(1.3);
}

@media (max-width: 767px) {
    .testimonials-carousel {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

/* Final CTA Section */
.final-cta {
    background: var(--light-gold);
    text-align: center;
}

.cta-content h2 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-center {
    max-width: 600px;
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: var(--medium-gray);
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    box-shadow: var(--shadow-heavy);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    display: block;
    filter: brightness(0) invert(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20BA55;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

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

    .nav-menu a {
        text-decoration: none;
        color: var(--dark-gray);
        font-weight: 500;
        transition: var(--transition);
    }

    .nav-menu a:hover {
        color: var(--primary-green);
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-profile {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }
    
    .profile-image {
        max-width: none;
    }

    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .credentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Loading optimization */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}
