:root {
    --pink: #ff0066;
    --pink-dark: #e6005c;
    --pink-light: rgba(255, 0, 102, 0.1);
    --dark: #111111;
    --gray-900: #222222;
    --gray-800: #333333;
    --gray-700: #444444;
    --gray-600: #666666;
    --gray-500: #777777;
    --gray-400: #999999;
    --gray-300: #dddddd;
    --gray-200: #eeeeee;
    --gray-100: #f7f7f7;
    --white: #ffffff;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    
    --header-height: 80px;
    --header-height-scrolled: 70px;
    
    --container-max-width: 1200px;
    --container-padding: 24px;
    
    --section-spacing: 120px;
    --section-spacing-mobile: 80px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    height: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.text-pink {
    color: var(--pink);
}

.text-small {
    font-size: 0.875rem;
}

.text-large {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.font-light {
    font-weight: 300;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

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

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-spacing) 0;
}

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

.section--gray {
    background-color: var(--gray-100);
}

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

.section__header {
    margin-bottom: 60px;
    text-align: center;
}

.section__pretitle {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 2.75rem); 
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.section__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--pink);
}

.section__description {
    max-width: 760px;
    margin: 0 auto;
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
}

.grid {
    display: grid;
    gap: 32px;
}

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

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

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

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.mt-64 {
    margin-top: 64px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mb-64 {
    margin-bottom: 64px;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn--primary {
    background-color: var(--pink);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 0, 102, 0.2);
}

.btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 0, 102, 0.25);
}

.btn--primary:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 102, 0.2);
}

.btn--secondary {
    background-color: var(--white);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn--secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.btn--outline {
    background-color: transparent;
    border: 2px solid currentColor;
}

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

.btn--white:hover {
    background-color: var(--white);
    color: var(--pink);
}

.btn--pink {
    color: var(--pink);
}

.btn--pink:hover {
    background-color: var(--pink);
    color: var(--white);
}

.btn--block {
    display: flex;
    width: 100%;
}

/* Enhanced button with icon */
.btn i {
    margin-right: 8px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.image {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.image--full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--white);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    transition: all var(--transition-base);
    background-color: transparent;
}

.header--scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: var(--header-height-scrolled);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--pink);
}

.nav__menu {
    display: flex;
    gap: 40px;
}

.nav__link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    opacity: 0.9;
}

.nav__link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pink);
    transition: width var(--transition-base);
}

.nav__link:hover, 
.nav__link.active {
    opacity: 1;
}

.nav__link:hover::after, 
.nav__link.active::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 110;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(255, 0, 102, 0.7) 100%);
    z-index: -1;
}

.hero__content {
    max-width: 750px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__tag {
    display: inline-block;
    background-color: var(--white);
    color: var(--pink);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--white);
}

.hero__description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.6;
}

/* Enhanced Hero Styles */
.hero__backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero__background.active {
    opacity: 1;
}

.hero__trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.2s;
}

.hero__tag {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.4s;
}

.hero__title {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero__description {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.btn-group {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1s;
}

/* Live Status */
.live-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* About Section - FIXED & IMPROVED */
.about-section {
    position: relative;
    background-color: var(--white);
}   

.about-section__content {
    position: relative;
    z-index: 2;
}

.about__image {
    width: 100%;
    min-height: 350px;
    max-height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/5;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform var(--transition-slow);
}

.about__image:hover img {
    transform: scale(1.05);
}

.about__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.about__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--pink);
}

.about__text {
    margin-bottom: 24px;
    color: var(--gray-700);
    font-size: 1.0625rem;
}

/* Qualification Cards - NEW IMPROVED DESIGN */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.qualification {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.qualification:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink-light);
}

.qualification__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--pink-light);
    color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.qualification:hover .qualification__icon {
    background-color: var(--pink);
    color: var(--white);
    transform: scale(1.1);
}

.qualification__content {
    flex-grow: 1;
}

.qualification__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.qualification__description {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Original features styles (can be removed if switching to qualification cards) */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--pink-light);
    color: var(--pink);
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.feature:hover .feature__icon {
    background-color: var(--pink);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.2);
}

.feature__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.feature__description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Services */
.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all var(--transition-base);
    background-color: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.tab:hover {
    box-shadow: var(--shadow-sm);
}

.tab.active {
    background-color: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.2);
}

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

.service {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service__image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service:hover .service__image img {
    transform: scale(1.1);
}

.service__icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 60px;
    height: 60px;
    background-color: var(--pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: all var(--transition-base);
}

.service:hover .service__icon {
    transform: scale(1.1) rotate(10deg);
}

.service__content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.service__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.service__description {
    color: var(--gray-600);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service__list {
    margin-bottom: 32px;
}

.service__list-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.service__list-item::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: var(--pink);
    border-radius: 50%;
}

.service__list-item::after {
    content: "✓";
    position: absolute;
    top: 7px;
    left: 4px;
    font-size: 10px;
    color: white;
}

/* Pricing */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.price-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--gray-200);
}

.price-card--popular {
    border: 2px solid var(--pink);
    transform: translateY(-8px) scale(1.02);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--pink);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 0, 102, 0.2);
    z-index: 2;
}

.price-card__header {
    padding: 32px;
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
}

.price-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: var(--pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.price-card__title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--white);
}

.price-card__subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.price-card__price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pink);
    line-height: 1;
}

.price-card__period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-top: 8px;
}

.price-card__body {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.price-card__features {
    margin-bottom: 32px;
    flex-grow: 1;
}

.price-card__feature {
    position: relative;
    padding: 12px 0 12px 28px;
    color: var(--gray-700);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--gray-200);
}

.price-card__feature:last-child {
    border-bottom: none;
}

.price-card__feature i {
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--pink);
}

.policy {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.policy__title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.75rem;
    position: relative;
    padding-bottom: 16px;
}

.policy__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--pink);
}

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

.policy__item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.policy__icon {
    width: 60px;
    height: 60px;
    background-color: var(--pink-light);
    color: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.policy__item:hover .policy__icon {
    background-color: var(--pink);
    color: var(--white);
    transform: rotate(360deg);
}

.policy__content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.policy__content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-left: 3px solid var(--pink);
}

.testimonial__text {
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 32px;
    flex-grow: 1;
    padding-top: 8px;
}

.testimonial__text::before {
    content: """;
    position: absolute;
    top: -24px;
    left: -12px;
    font-size: 5rem;
    line-height: 1;
    font-family: serif;
    color: rgba(255, 0, 102, 0.1);
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
}

.testimonial__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--gray-100);
    color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.testimonial:hover .testimonial__avatar {
    background-color: var(--pink);
    color: var(--white);
}

.testimonial__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial__role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* CTA */
.cta {
    position: relative;
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
    background-image: url('../images/1.jpg');
    background-size: cover;
    background-position: center;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(255, 0, 102, 0.8) 100%);
    z-index: 0;
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.cta__description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact */
.contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.contact__info {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact__title {
    font-size: 1.75rem;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 16px;
}

.contact__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--pink);
}

.contact__list {
    margin-bottom: 40px;
}

.contact__item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    transition: transform var(--transition-base);
}

.contact__item:hover {
    transform: translateX(8px);
}

.contact__icon {
    width: 48px;
    height: 48px;
    background-color: var(--pink-light);
    color: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.contact__item:hover .contact__icon {
    background-color: var(--pink);
    color: var(--white);
    transform: rotate(360deg);
}

.contact__label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact__value {
    color: var(--gray-600);
}

.contact__value a {
    color: var(--gray-600);
    transition: color var(--transition-base);
}

.contact__value a:hover {
    color: var(--pink);
}

.contact__social {
    margin-top: auto;
    text-align: center;
}

.contact__social-title {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--pink);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(255, 0, 102, 0.2);
}

.social__link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(255, 0, 102, 0.3);
}

.contact__form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form__group {
    margin-bottom: 24px;
}

.form__group.focused .form__label {
    color: var(--pink);
}

.form__label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    transition: color var(--transition-base);
}

.form__control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    background-color: var(--gray-100);
    color: var(--gray-800);
    font-family: var(--font-sans);
}

.form__control:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.1);
    background-color: var(--white);
}

.form__control::placeholder {
    color: var(--gray-500);
}

.form__control--textarea {
    resize: vertical;
    min-height: 150px;
}

.form__note {
    margin-top: 24px;
    padding: 16px;
    background-color: var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--gray-600);
}

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

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 24px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer__logo {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: inline-block;
    color: var(--white);
}

.footer__logo span {
    color: var(--pink);
}

.footer__text {
    color: var(--gray-400);
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all var(--transition-base);
    font-size: 1rem;
}

.footer__social-link:hover {
    background-color: var(--pink);
    transform: translateY(-5px);
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--pink);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: var(--gray-400);
    transition: all var(--transition-base);
    font-size: 0.9375rem;
}

.footer__link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer__contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.footer__contact-icon {
    color: var(--pink);
    flex-shrink: 0;
}

.footer__bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer__legal-link {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color var(--transition-base);
    padding: 4px 0;
    position: relative;
}

.footer__legal-link:hover {
    color: var(--pink);
}

.footer__legal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--pink);
    transition: width var(--transition-base);
}

.footer__legal-link:hover::after {
    width: 100%;
}

.footer__copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 16px;
    border-radius: var(--radius-md);
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-left: 4px solid var(--pink);
    animation: slideIn 0.3s forwards;
}

.notification--error {
    border-left-color: #f44336;
}

.notification.remove {
    animation: slideOut 0.3s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification__content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification__content i {
    color: var(--pink);
    font-size: 1.25rem;
    margin-top: 2px;
}

.notification--error .notification__content i {
    color: #f44336;
}

.notification__content p {
    margin-bottom: 0;
    color: var(--gray-800);
    font-size: 0.9375rem;
}

.notification__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    transition: color var(--transition-base);
    margin-left: 12px;
    font-size: 0.875rem;
}

.notification__close:hover {
    color: var(--gray-800);
}

/* Media queries */
@media screen and (max-width: 1024px) {
    :root {
        --section-spacing: 100px;
        --container-padding: 20px;
    }
    
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }
    
    .about__image {
        max-height: 400px;
        min-height: 300px;
    }
    
    .price-card--popular {
        transform: translateY(0) scale(1);
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .footer__legal {
        gap: 16px;
        margin-bottom: 12px;
    }
    
    .footer__legal-link {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .footer__legal {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .footer__legal-link {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-spacing: 80px;
        --container-padding: 16px;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-base);
        z-index: 100;
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .contact {
        grid-template-columns: 1fr;
    }
    
    .about__image {
        max-height: 350px;
        min-height: 250px;
        margin-bottom: 32px;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
    
    .live-status {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --section-spacing: 60px;
        --container-padding: 12px;
    }
    
    .btn--lg {
        padding: 14px 32px;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .about__image {
        min-height: 250px;
        max-height: 300px;
    }
    
    .policy {
        padding: 24px;
    }
    
    .policy__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__info,
    .contact__form {
        padding: 24px;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
    }
}