* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffd700;
    --primary-color-hover: #ffed4e;
    --text-color: #333333;
    --secondary-color: #2c3e50;
    --accent-color: #ff6b6b;
}


body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #e8e8e8;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #000;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #d4d4d4;
    padding: 15px 30px;
    border-radius: 50px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    transition: color 0.3s;
}

nav a:hover {
    color: #000;
}

.contact-btn {
    background-color: #000;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #333;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px;
    border-radius: 30px;
    grid-row: 1 / 2;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-content .highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #ddd;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-color-hover);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 18px 40px;
    border: 2px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

.hero-image {
    background-color: #ddd;
    border-radius: 30px;
    border: 3px solid #4a9eff;
    width: 630px;
    height: 930px;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bottom-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.video-card {
    background-color: #d4d4d4;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.video-card h3 {
    font-size: 28px;
    color: #555;
    margin-bottom: 20px;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    cursor: pointer;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: rgba(255,255,255,0.6);
}

.play-button::after {
    content: '▶';
    color: #fff;
    font-size: 30px;
    margin-left: 5px;
}

.rating {
    color: var(--primary-color);
    font-size: 24px;
}

.reviews-card {
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reviews-icon {
    width: 150px;
    height: 60px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 50px;
    margin-bottom: 30px;
}

.reviews-card h2 {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 10px;
}

.reviews-card p {
    font-size: 22px;
    margin-bottom: 30px;
}

.btn-reviews {
    background-color: transparent;
    color: #000;
    padding: 15px 35px;
    border: 2px solid #000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-reviews:hover {
    background-color: #000;
    color: var(--primary-color);
}

.services-section {
    padding: 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.trainers-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 60px;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* removed duplicate trainer styles, relying on index.html inline or will be moved here later if needed, but for now just targeting the main file's variables */
.trainer-card {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    box-shadow:
        0 15px 35px rgba(0,0,0,0.3),
        0 5px 15px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.trainer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,215,0,0.05));
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.trainer-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-hover), var(--primary-color), #ff6b6b, var(--primary-color));
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.trainer-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.4),
        0 10px 25px rgba(0,0,0,0.3),
        0 0 30px rgba(255,215,0,0.2);
}

.trainer-card:hover::before {
    opacity: 1;
}

.trainer-card:hover::after {
    opacity: 0.7;
}

.trainer-image {
    width: 100%;
    height: 420px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,215,0,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid rgba(255,215,0,0.2);
}

.trainer-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255,215,0,0.05) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255,215,0,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.trainer-card:hover .trainer-image::before {
    opacity: 1;
}

.trainer-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.6) 30%,
        rgba(0,0,0,0.3) 60%,
        transparent 100%);
    opacity: 0.4;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.trainer-card:hover .trainer-image::after {
    opacity: 0.8;
    height: 80%;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(1.05) contrast(1.15) saturate(1.1);
    transform: scale(1.02);
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

.photo-placeholder {
    font-size: 72px;
    color: var(--primary-color);
    animation: pulse-enhanced 2.5s ease-in-out infinite;
    text-shadow:
        0 0 20px rgba(255,215,0,0.5),
        0 4px 8px rgba(255,215,0,0.3);
    position: relative;
    z-index: 2;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-enhanced {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }
}

@keyframes glow {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    to {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.trainer-info {
    padding: 35px 30px 30px;
    position: relative;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.08) 0%,
        rgba(255,255,255,0.03) 50%,
        transparent 100%);
    z-index: 2;
}

.trainer-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255,215,0,0.3),
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trainer-card:hover .trainer-info::before {
    opacity: 1;
}

.trainer-info h3 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 800;
    text-shadow:
        2px 2px 4px rgba(0,0,0,0.4),
        0 0 20px rgba(255,215,0,0.1);
    letter-spacing: 0.8px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.trainer-card:hover .trainer-info h3 {
    text-shadow:
        2px 2px 4px rgba(0,0,0,0.4),
        0 0 30px rgba(255,215,0,0.3);
}

.trainer-info p {
    color: #e8e8e8;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.trainer-info p strong {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.trainer-info .experience {
    color: #b8b8b8;
    font-style: italic;
    font-size: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.15);
    background: linear-gradient(90deg,
        rgba(255,215,0,0.1) 0%,
        transparent 100%);
    padding-left: 10px;
    transition: all 0.3s ease;
}

/* Enhanced hover effects */
.trainer-card:hover .trainer-info p {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.trainer-card:hover .trainer-info .experience {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255,215,0,0.4);
}

/* Premium badges */
.trainer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    box-shadow:
        0 4px 15px rgba(0,0,0,0.4),
        0 0 20px rgba(255,215,0,0.3);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 10;
    animation: badge-glow 2s ease-in-out infinite alternate;
}

@keyframes badge-glow {
    from {
        box-shadow:
            0 4px 15px rgba(0,0,0,0.4),
            0 0 20px rgba(255,215,0,0.3);
    }
    to {
        box-shadow:
            0 6px 20px rgba(0,0,0,0.5),
            0 0 30px rgba(255,215,0,0.5);
    }
}

.trainer-badge.expert {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
}

.trainer-badge.certified {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: #ffffff;
}

.trainer-badge.premium {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
    color: #000000;
}

.trainer-info p:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trainer-specialty-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    box-shadow: 0 2px 8px rgba(255,215,0,0.4);
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Enhanced social media */
.trainer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    justify-content: center;
}

.trainer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.trainer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,215,0,0.3) 0%, rgba(255,215,0,0.1) 100%);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.trainer-social a:hover {
    background: rgba(255,215,0,0.2);
    transform: translateY(-5px) rotate(5deg);
    color: var(--primary-color);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

.trainer-social a:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Enhanced loading skeleton */
.trainer-skeleton {
    background: linear-gradient(90deg,
        #3a3a3a 0%,
        #4a4a4a 25%,
        #3a3a3a 50%,
        #2a2a2a 75%,
        #3a3a3a 100%);
    background-size: 300% 100%;
    animation: shimmer-enhanced 2s infinite;
    border-radius: 28px;
}

@keyframes shimmer-enhanced {
    0% { background-position: -300% 0; }
    100% { background-position: 300% 0; }
}

.cta-section {
    padding: 100px 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: bold;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #333;
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 60px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-section p, .footer-section a {
    color: #aaa;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
}

/* ===== GALERİ BÖLÜMÜ ===== */
.gallery-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.gallery-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.gallery-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

/* ESTETİK GRID GALERİ TASARIMI */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    filter: brightness(1);
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: brightness(0.9);
}

/* Özel boyutlar */
.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 16px;
}

/* Loading State */
.gallery-loading {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-image {
        grid-row: auto;
    }

    .services-grid, .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Responsive Trainer Cards */
    .trainer-card {
        transform-style: flat;
        perspective: none;
    }

    .trainer-card:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow:
            0 20px 40px rgba(0,0,0,0.3),
            0 8px 20px rgba(0,0,0,0.2);
    }

    .trainer-image {
        height: 350px;
    }

    .trainer-info {
        padding: 30px 25px 25px;
    }

    .trainer-info h3 {
        font-size: 28px;
    }

    .trainer-info p {
        font-size: 16px;
    }

    .trainer-social {
        gap: 12px;
    }

    .trainer-social a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item {
        border-radius: 10px;
    }

    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-grid, .trainers-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Trainer Cards */
    .trainer-card {
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .trainer-card:hover {
        transform: translateY(-8px) scale(1.005);
        box-shadow:
            0 15px 30px rgba(0,0,0,0.25),
            0 5px 15px rgba(0,0,0,0.15);
    }

    .trainer-image {
        height: 280px;
    }

    .trainer-info {
        padding: 25px 20px 20px;
    }

    .trainer-info h3 {
        font-size: 24px;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .trainer-info p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .trainer-info .experience {
        font-size: 14px;
        margin-top: 12px;
        padding-top: 12px;
    }

    .trainer-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .trainer-specialty-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .trainer-social {
        gap: 10px;
        margin-top: 20px;
        padding-top: 15px;
    }

    .trainer-social a {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }

    .photo-placeholder {
        font-size: 56px;
    }

    .photo-placeholder::before {
        width: 100px;
        height: 100px;
    }

    .gallery-section {
        padding: 40px 15px;
    }

    .gallery-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        border-radius: 8px;
    }

    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bottom-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header .section-title {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.contact-details p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin: 0 0 30px 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4a9eff;
}

.contact-form select {
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    background: #1a1a1a;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .btn-primary:hover {
    background: #333;
}

/* WhatsApp Section */
.whatsapp-section {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.whatsapp-section h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.whatsapp-section p {
    color: #666;
    margin: 0 0 25px 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25d366;
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

.whatsapp-icon {
    font-size: 24px;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.whatsapp-title {
    font-size: 18px;
    font-weight: 700;
}

.whatsapp-number {
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Section Responsive Design */
@media (max-width: 1024px) {
    .contact-section {
        padding: 60px 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-header .section-title {
        font-size: 28px;
    }

    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .whatsapp-section {
        padding: 30px 20px;
    }

    .whatsapp-btn {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}