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

:root {
    --primary-color: #1a365d; /* Navy Blue */
    --secondary-color: #2c5282; /* Darker Navy Blue */
    --accent-color: #d4af37; /* Gold */
    --text-color: #2d3748; /* Charcoal */
    --light-gray: #f7fafc; /* Light Gray */
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(26, 54, 93, 0.1);
    z-index: 1000;
    height: 80px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

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

.cta-button {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: var(--white);
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.hero-dots {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-highlight {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s;
}

.highlight-text {
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 54, 93, 0.2), rgba(26, 54, 93, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    animation: fadeInUp 1s ease 0.4s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-badge, .success-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 0.6s;
}

.trust-badge {
    top: 20px;
    right: -20px;
}

.success-badge {
    bottom: 40px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
}

.trust-badge i, .success-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.trust-badge span, .success-badge span {
    font-weight: 600;
    color: var(--primary-color);
}

.success-badge span {
    color: var(--white);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.2s;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s;
}

.hero-buttons .cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s ease 0.8s;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-icon i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

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

    .stat-item {
        align-items: center;
    }

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

    .hero-image {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .experience-badge {
        left: 20px;
        bottom: -20px;
    }

    .trust-badge {
        right: 20px;
        top: 20px;
    }

    .success-badge {
        right: 20px;
        bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

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

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

    .hero-highlight {
        flex-wrap: wrap;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .experience-badge {
        padding: 10px 20px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    .trust-badge, .success-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Practice Areas Section */
.practice-areas {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.practice-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

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

.practice-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.practice-card:hover .practice-icon {
    background: var(--accent-color);
    transform: rotateY(360deg);
}

.practice-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.practice-card:hover .practice-icon i {
    color: var(--white);
}

.practice-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.practice-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.practice-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.practice-card:hover .learn-more i {
    transform: translateX(5px);
    }

.card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, transparent 49%, var(--accent-color) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.practice-card:hover .card-decoration {
    opacity: 0.1;
}

.practice-see-more-wrap {
    text-align: center;
    margin-top: 50px;
}

.practice-see-more-wrap .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.practice-see-more-wrap .cta-button i {
    transition: transform 0.3s ease;
}

.practice-see-more-wrap .cta-button:hover i {
    transform: translateY(3px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-shape {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    padding-right: 40px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.value-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    position: relative;
    overflow: hidden;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.value-item:hover .value-icon {
    background: var(--accent-color);
    transform: rotateY(360deg);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.value-item:hover .value-icon i {
    color: var(--white);
}

.value-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.testimonials-shape {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.quote-icon {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.rating {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.testimonial-cta {
    text-align: center;
    margin-top: 50px;
}

.testimonial-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.testimonial-cta .cta-button i {
    transition: transform 0.3s ease;
}

.testimonial-cta .cta-button:hover i {
    transform: translateY(3px);
}

@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-right: 0;
    }

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

@media (max-width: 768px) {
    .values,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-box {
    padding: 15px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.contact-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.03;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.input-icon input,
.input-icon textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid rgba(26, 54, 93, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.input-icon textarea {
    height: 150px;
    resize: none;
}

.input-icon input:focus,
.input-icon textarea:focus {
    border-color: var(--accent-color);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.input-icon input:focus + i,
.input-icon textarea:focus + i {
    opacity: 1;
    color: var(--accent-color);
}

.info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item:hover {
    background: var(--white);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background: var(--accent-color);
    transform: rotateY(360deg);
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-item:hover .info-icon i {
    color: var(--white);
}

.info-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.footer-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    opacity: 0.03;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 5px;
}

.brand-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-group h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-group ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright p {
    color: rgba(255, 255, 255, 0.8);
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.powered-by p {
    color: var(--white);
    font-size: 1.1rem;
}

.powered-by strong {
    color: var(--white);
    font-weight: 700;
}

.powered-by .powered-x {
    color: var(--accent-color);
    font-weight: 700;
    margin: 0 5px;
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
}

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-card,
    .info-card {
        padding: 30px 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .info-item {
        padding: 15px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        height: auto;
        padding: 10px 0;
    }

    .logo .brand-name {
        font-size: 1.3rem;
    }

    .values {
        grid-template-columns: 1fr;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--white);
    font-size: 2rem;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Practice Cards */
.practice-card {
    position: relative;
    overflow: hidden;
}

.learn-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.learn-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.practice-card:hover .learn-more {
    color: var(--accent-color);
}

.practice-card:hover .learn-more i {
    transform: translateX(5px);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.testimonial-content {
    position: relative;
    padding: 20px;
}

.testimonial-content i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin: 0;
    color: var(--secondary-color);
}

.testimonial-author p {
    margin: 5px 0 0;
    color: var(--text-color);
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

/* Contact Info Items */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.info-item h4 {
    margin: 0 0 5px;
    color: var(--secondary-color);
}

/* Footer Logo */
.footer-logo p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        margin: 10px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-item i {
        margin-bottom: 10px;
    }
}

/* Objectives Section */
.objectives {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.objectives-shape {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.objective-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    position: relative;
    overflow: hidden;
}

.objective-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.objective-card:hover .icon-bg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.objective-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.objective-card:hover .objective-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.objective-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.objective-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.objective-card .card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, transparent 49%, var(--accent-color) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.objective-card:hover .card-decoration {
    opacity: 0.1;
}

@media (max-width: 1200px) {
    .practice-grid,
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
    .practice-grid,
    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .practice-card,
    .objective-card {
        padding: 30px 20px;
    }

    .section-badge {
        font-size: 0.8rem;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown > a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown > a i {
        transform: rotate(0);
    }

    .dropdown.active > a i {
        transform: rotate(180deg);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 15px rgba(26, 54, 93, 0.1);
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .dropdown-menu {
        padding-left: 20px;
    }
}

/* Hide extra practice cards by default */
.extra-practice {
    display: none;
}
.practice-grid.show-extra .extra-practice {
    display: block;
}

/* About Section Enhancements */
.about-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.03;
    z-index: 1;
}

.about-dots {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.05;
    z-index: 1;
}

.about-shape {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    opacity: 0.04;
    z-index: 1;
}

.description-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(26, 54, 93, 0.02);
    border: 1px solid rgba(26, 54, 93, 0.05);
}

.feature-item:hover {
    background: rgba(26, 54, 93, 0.05);
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--accent-color);
    transform: rotateY(360deg);
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-title {
    font-weight: 600;
    color: var(--primary-color);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.stat-box {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    border: 1px solid rgba(26, 54, 93, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.15);
    border-color: var(--accent-color);
}

.stat-content {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stat-plus, .stat-percent {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 54, 93, 0.2), rgba(26, 54, 93, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    animation: fadeInUp 1s ease 0.4s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 0.6s;
    border: 1px solid rgba(26, 54, 93, 0.1);
}

/* Animation for Stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 1s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .description-card {
        padding: 20px;
    }

    .feature-item {
        padding: 10px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-plus, .stat-percent {
        font-size: 1.2rem;
    }

    .experience-badge {
        padding: 10px 20px;
    }

    .trust-badge {
        padding: 8px 15px;
    }
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.value-card:hover .value-icon {
    background: var(--accent-color);
    transform: rotateY(360deg);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.value-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.value-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, transparent 49%, var(--accent-color) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover .value-decoration {
    opacity: 0.1;
}

.value-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.value-card:hover .value-hover-effect {
    opacity: 0.05;
}

/* Enhanced Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.testimonials-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.03;
    z-index: 1;
}

.testimonials-dots {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.05;
    z-index: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.quote-icon {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    opacity: 1;
    transform: scale(1.1);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    padding: 5px 12px;
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.testimonial-card:hover .tag {
    background: var(--accent-color);
    color: var(--white);
}

.author-image {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .image-border {
    opacity: 1;
    transform: scale(1.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: var(--accent-color);
    display: flex;
    gap: 2px;
}

.rating-text {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, transparent 49%, var(--accent-color) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-decoration {
    opacity: 0.1;
}

.testimonial-cta {
    text-align: center;
    margin-top: 50px;
}

.testimonial-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.testimonial-cta .cta-button:hover {
    transform: translateY(-3px);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shine 3s infinite;
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-tags {
        flex-wrap: wrap;
    }
} 