/* ========================================
   HUKUK BÜROSU - MODERN LAWYER WEBSITE
   ======================================== */

/* CSS Variables */
:root {
    --golden: #bfa470;
    --dark: #15151a;
    --gray1: #3c3c3c;
    --gray2: #888888;
    --gray3: #c0c0c0;
    --gray4: #f8f8f8;
    --white: #ffffff;
    
    --font-display: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-golden: 0 10px 40px rgba(191, 164, 112, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray1);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Typography */
.pre-title {
    display: inline-block;
    color: var(--golden);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    color: var(--gray2);
    font-size: 18px;
    max-width: 600px;
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--golden);
    color: var(--dark);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-golden);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    color: var(--dark);
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--golden);
    transition: var(--transition);
    cursor: pointer;
    font-size: 16px;
}

.btn-outline:hover {
    background: var(--golden);
    color: var(--white);
    transform: translateY(-3px);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--golden);
    font-weight: 600;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 12px;
}

.btn-link svg {
    width: 20px;
    height: 20px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Topbar */
.topbar {
    background: #0f0f12;
    border-bottom: 1px solid rgba(191, 164, 112, 0.1);
    padding: 10px 0;
    font-size: 13px;
    color: var(--gray3);
}

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

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.topbar-item:hover {
    color: var(--golden);
}

.topbar-item i {
    color: var(--golden);
}

.topbar-right {
    display: flex;
    gap: 20px;
}

.topbar-social {
    color: var(--gray3);
    transition: var(--transition);
}

.topbar-social:hover {
    color: var(--golden);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: absolute;
    top: 41px; /* Topbar height */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-slow);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.header.scrolled,
.header.solid {
    position: fixed;
    top: 0;
    padding: 12px 0;
    background: rgba(21, 21, 26, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(191, 164, 112, 0.2);
}

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

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

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--golden);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
}

.logo-accent {
    color: var(--golden);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--gray3);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--golden);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(21, 21, 26, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    color: var(--gray3);
    font-size: 16px;
    padding: 10px 0;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--white);
}

.desktop-only {
    display: inline-flex;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
    padding-top: 120px; /* Increased to provide more space under fixed header */
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(191, 164, 112, 0.1) 0%, transparent 50%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.hero-glow-1 {
    top: 80px;
    left: 40px;
    width: 280px;
    height: 280px;
    background: var(--golden);
    animation: float 6s ease-in-out infinite;
}

.hero-glow-2 {
    bottom: 80px;
    right: 40px;
    width: 380px;
    height: 380px;
    background: var(--golden);
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

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

.hero-content {
    color: var(--white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    display: block;
}

.hero-description {
    color: var(--gray3);
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-icon {
    width: 24px;
    height: 24px;
    color: var(--golden);
    margin: 0 auto 10px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
}

.stat-label {
    font-size: 12px;
    color: var(--gray3);
}

.hero-image {
    display: block;
}

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

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: rgba(191, 164, 112, 0.2);
    border-radius: 20px;
    filter: blur(30px);
}

.hero-img {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
}

/* About Section */
.about {
    background: var(--gray4);
}

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

.about-image-wrapper {
    position: relative;
}

.about-frame {
    position: absolute;
    border-radius: 8px;
}

.about-frame-1 {
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--golden);
}

.about-frame-2 {
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: rgba(191, 164, 112, 0.2);
}

.about-img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-content {
    padding-left: 20px;
}

.about-text {
    color: var(--gray2);
    font-size: 18px;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 22px;
    height: 22px;
    color: var(--golden);
    flex-shrink: 0;
}

.feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

/* Services Section */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

.service-card {
    background: var(--gray4);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-slow);
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 25px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(191, 164, 112, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--golden);
}

.service-card:hover .service-icon {
    background: var(--golden);
}

.service-card:hover .service-icon svg {
    color: var(--dark);
}

.service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-description {
    color: var(--gray2);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--golden);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 100px 0;
    background: var(--dark);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(191, 164, 112, 0.1), transparent);
}

.cta-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.2;
}

.cta-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    color: var(--white);
    margin: 15px 0 20px;
}

.cta-text {
    color: var(--gray3);
    font-size: 18px;
    margin-bottom: 30px;
}

/* Team Section */
.team {
    background: var(--gray4);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.team-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 21, 26, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

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

.team-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--white);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--golden);
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    background: var(--gray4);
    border-radius: 24px;
    padding: 50px;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    color: rgba(191, 164, 112, 0.3);
}

.testimonial-content {
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

.testimonial-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--golden);
    flex-shrink: 0;
}

.testimonial-text p {
    font-size: 20px;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-text h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-text span {
    color: var(--golden);
    font-size: 14px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--golden);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: var(--golden);
}

/* Blog Section */
.blog {
    background: var(--gray4);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

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

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-slow);
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.blog-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--golden);
    background: rgba(191, 164, 112, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.blog-date {
    font-size: 12px;
    color: var(--gray2);
}

.blog-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    transition: var(--transition);
}

.blog-card:hover .blog-title {
    color: var(--golden);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray2);
    font-size: 14px;
    transition: var(--transition);
}

.blog-link svg {
    width: 16px;
    height: 16px;
}

.blog-link:hover {
    color: var(--golden);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-text {
    color: var(--gray2);
    font-size: 18px;
    margin: 20px 0 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(191, 164, 112, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--golden);
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray2);
    font-size: 14px;
}

.contact-form-wrapper {
    background: var(--gray4);
    border-radius: 24px;
    padding: 40px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--gray3);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--golden);
    box-shadow: 0 0 0 3px rgba(191, 164, 112, 0.2);
}

.form-group textarea {
    resize: none;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: var(--gray3);
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray3);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--golden);
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray3);
    font-size: 14px;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--golden);
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: var(--gray3);
    font-size: 14px;
}

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

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray3);
    transition: var(--transition);
}

.footer-social .social-icon:hover {
    background: var(--golden);
    border-color: var(--golden);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-social .social-icon svg {
    width: 16px;
    height: 16px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(191, 164, 112, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(191, 164, 112, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 40px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-text p {
        font-size: 16px;
    }
    
    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .stat-value {
        font-size: 22px;
    }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
