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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
}

/* UCLA Color Palette */
:root {
    --ucla-blue: #2774AE;
    --ucla-gold: #FFD100;
    --ucla-dark-blue: #005587;
    --ucla-light-blue: #8BB8E8;
    --ucla-warm-gold: #FFB81C;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --shadow: 0 4px 20px rgba(39, 116, 174, 0.15);
    --shadow-hover: 0 8px 30px rgba(39, 116, 174, 0.25);
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 150px;
    width: auto;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ucla-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ucla-gold);
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.instagram-link:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.instagram-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.instagram-link:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    width: 30px;
    height: 30px;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--ucla-dark-blue);
    transition: 0.3s ease;
    border-radius: 2px;
    position: absolute;
    left: 2.5px;
}

.bar:nth-child(1) {
    top: 8px;
}

.bar:nth-child(2) {
    top: 13.5px;
}

.bar:nth-child(3) {
    top: 19px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: url('tutoring.jpeg') center center/cover no-repeat;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 116, 174, 0.8) 0%, rgba(0, 85, 135, 0.8) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,209,0,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,209,0,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,209,0,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,209,0,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,209,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 48px;
}

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

.hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--ucla-gold);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 209, 0, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-card i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--ucla-gold);
    position: relative;
    z-index: 1;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--ucla-gold) 0%, var(--ucla-warm-gold) 100%);
    color: var(--ucla-dark-blue);
    font-weight: 700;
    border: none;
    position: relative;
    overflow: hidden;
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 209, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--ucla-warm-gold) 0%, var(--ucla-gold) 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 209, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 209, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--ucla-gold);
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--ucla-gold);
    color: var(--ucla-dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 209, 0, 0.3);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--ucla-dark-blue);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--ucla-gold);
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(39, 116, 174, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ucla-blue), var(--ucla-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--ucla-light-blue);
}

.feature-card .btn {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    padding: 10px 25px;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--ucla-blue) 0%, var(--ucla-dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(39, 116, 174, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ucla-dark-blue);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ucla-blue) 0%, var(--ucla-dark-blue) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,209,0,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,209,0,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,209,0,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,209,0,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,209,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grain)"/></svg>');
    opacity: 0.2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--ucla-blue) 0%, var(--ucla-dark-blue) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="header-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,209,0,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,209,0,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,209,0,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,209,0,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,209,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23header-grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Services Page */
.services-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: var(--ucla-dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.grade-levels {
    margin-bottom: 4rem;
}

.grade-levels h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--ucla-dark-blue);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.grade-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(39, 116, 174, 0.1);
    transition: transform 0.3s ease;
}

.grade-category:hover {
    transform: translateY(-5px);
}

.grade-category h4 {
    font-size: 1.5rem;
    color: var(--ucla-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.grade-category p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ucla-blue) 0%, var(--ucla-dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(39, 116, 174, 0.3);
    position: relative;
}

.service-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ucla-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
}

.pricing-card.featured {
    border-color: var(--ucla-gold);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 209, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ucla-gold);
    color: var(--ucla-dark-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 209, 0, 0.3);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ucla-blue);
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: var(--ucla-gold);
    font-size: 1.1rem;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: #f8fafc;
}

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

.additional-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-5px);
}

.additional-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.additional-card h3 i {
    color: var(--ucla-blue);
    font-size: 1.3rem;
}

.additional-card p {
    color: #6b7280;
}

.additional-card .btn {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 8px 20px;
}

/* About Page */
.about-alina {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.lead {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.about-details {
    display: grid;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.detail-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.detail-item p {
    color: #6b7280;
}

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

.alina-message {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(39, 116, 174, 0.15);
    border: 2px solid var(--ucla-blue);
    position: relative;
    overflow: hidden;
    max-width: 450px;
    backdrop-filter: blur(10px);
}



.alina-message::after {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(39, 116, 174, 0.1);
    font-family: serif;
    font-weight: bold;
}

.quote-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.quote-content p {
    color: var(--ucla-dark-blue);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
}

.quote-content p:last-child {
    margin-bottom: 0;
}

.quote-author {
    text-align: right;
    color: var(--ucla-blue);
    font-weight: 600;
    font-size: 1.1rem;
    font-style: normal;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: #f8fafc;
}

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

.philosophy-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ucla-blue) 0%, var(--ucla-dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(39, 116, 174, 0.3);
}

.philosophy-icon i {
    font-size: 1.75rem;
    color: white;
}

.philosophy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.philosophy-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: white;
}

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

.reason-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ucla-blue), var(--ucla-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reason-item:hover::before {
    transform: scaleX(1);
}

.reason-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(39, 116, 174, 0.15);
    background: white;
}

.reason-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.reason-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ucla-gold) 0%, var(--ucla-warm-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ucla-dark-blue);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 209, 0, 0.3);
}

.reason-item h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--ucla-dark-blue);
    font-weight: 600;
}

.reason-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
    padding-left: 75px;
}

.reason-item .btn {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 8px 20px;
    margin-left: 75px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #6b7280;
    line-height: 1.6;
}

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

.author-info h4 {
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Contact Page */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info > p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ucla-blue) 0%, var(--ucla-dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(39, 116, 174, 0.3);
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.contact-text p {
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-text small {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-container {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(39, 116, 174, 0.1);
    border: 1px solid rgba(39, 116, 174, 0.1);
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--ucla-dark-blue);
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--ucla-dark-blue);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: white;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--ucla-blue);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ucla-blue);
    box-shadow: 0 0 0 3px rgba(39, 116, 174, 0.1);
}

.form-group input.valid {
    border-color: var(--ucla-gold);
    box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.1);
}

.form-group input.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.validation-message {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.validation-message.valid {
    color: var(--ucla-gold);
    font-weight: 600;
}

.validation-message.invalid {
    color: #ef4444;
    font-weight: 600;
}

.phone-input-group {
    display: flex;
    gap: 0.75rem;
    position: relative;
}

.phone-input-group select {
    width: 150px;
    flex-shrink: 0;
    background: white;
    color: var(--ucla-dark-blue);
    border: 2px solid #e5e7eb;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.3s ease;
    border-radius: 8px;
    padding: 12px 16px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.phone-input-group select:hover {
    border-color: var(--ucla-blue);
}

.phone-input-group select:focus {
    outline: none;
    border-color: var(--ucla-blue);
    box-shadow: 0 0 0 3px rgba(39, 116, 174, 0.1);
}

.phone-input-group input {
    flex: 1;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--ucla-blue);
    border-color: var(--ucla-blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--ucla-gold);
}

.phone-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--ucla-gold);
    text-decoration: underline;
}

.instagram-handle-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-handle-link:hover {
    color: var(--ucla-gold);
    text-decoration: underline;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--ucla-gold);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 80px;
        padding: 0 15px;
    }
    
    .logo-image {
        height: 120px;
    }
    
    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        padding: 2rem;
        gap: 1rem;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu .nav-link {
        max-width: 280px;
        width: 100%;
    }

    .nav-menu.active {
        top: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--ucla-dark-blue);
        text-decoration: none;
        transition: color 0.3s ease;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--ucla-blue);
    }
    
    .instagram-link {
        font-size: 1.5rem;
        color: #833AB4;
        transition: color 0.3s ease;
        width: auto;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        padding: 1rem 0;
    }
    
    .instagram-link:hover {
        color: #FD1D1D;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg);
        top: 13.5px;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg);
        top: 13.5px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .phone-input-group {
        flex-direction: column;
    }

    .phone-input-group select {
        width: 100%;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 10px;
    }
    
    .logo-image {
        height: 100px;
    }
    
    .nav-menu {
        top: -100vh;
        padding: 1.5rem 0;
    }
    
    .nav-link {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }

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

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

    .container {
        padding: 0 15px;
    }

    .feature-card,
    .service-card,
    .pricing-card,
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 