:root {
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #d3d3d3;
    --gray-dark: #3a3a3a;
    --yellow: #ffc107;
    --yellow-dark: #c49300;
    --blue: #2a4893;
    --green: #059669;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-very-light: #999999;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
    transition: all 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(var(--gray-light), 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(var(--gray-light), 0.6);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes borderRadiusPulse {
    0% {
        border-radius: 20px;
    }
    
    50% {
        border-radius: 15px;
    }
    
    100% {
        border-radius: 20px;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 50%, var(--gray-medium) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 74px;
}

p {
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
}

a {
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--yellow-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ===== Sticky Header ===== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(var(--green), 0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 8px 32px rgba(var(--gray-light), 0.1);
    border-bottom: 1px solid rgba(var(--white), 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background-size: 200% 200%;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 46px;
    margin-right: 6px;
}

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

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:not(.btn-small)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--blue), var(--green));
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-small):hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--yellow-dark);
}

.btn-small {
    padding: 6px 22px !important;
    font-size: 0.95rem;
    margin-right: 0 !important;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--blue);
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--blue);
}

/* Responsive Header */
@media (max-width: 768px) {
    .sticky-header {
        padding: 12px 0;
    }

    .header-container {
        padding: 0 12px;
    }

    .logo {
        font-size: 1.1rem;
        line-height: 22px;
    }

    .logo img {
        width: 46px;
        margin-right: 8px;
    }

    .nav-menu {
        gap: 15px;
    }

    .btn-small {
        padding: 6px 22px !important;
        font-size: 0.85rem !important;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        color: var(--blue);
        cursor: pointer;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(var(--white), 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
        padding: 20px;
        backdrop-filter: blur(6px);
        background-color: var(--white);
    }

    .nav-menu a:not(.btn-small) {
        display: block;
        font-size: 1.2rem;
        margin: 15px 0;
    }
}

section {
    padding: 40px 16px;
    box-sizing: border-box;
    margin: auto;
}

h1,
h2,
h3 {
    color: var(--gray-dark);
}

h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.2;
}

h2 i {
    color: var(--yellow);
    margin-right: 12px;
}

p {
    color: var(--text-light);
    max-width: 900px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 6px 24px;
    margin-right: 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(var(--white), 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--white);
    background-size: 200% 200%;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(var(--blue), 0.3), inset 0 1px 0 rgba(var(--white), 0.3);
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 25px rgba(var(--yellow), 0.4), inset 0 1px 0 rgba(var(--white), 0.3);
}

.btn-secondary {
    border: 2px solid var(--yellow-dark);
    color: var(--yellow);
    background: linear-gradient(135deg, rgba(var(--white), 0.9) 0%, rgba(var(--gray-light), 0.8) 100%);
    box-shadow: 0 2px 8px rgba(var(--blue), 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(var(--blue), 0.25);
    border-radius: 20px;
}

.btn:hover {
    background-position: 100% 0;
    background: var(--white);
    border: 1px solid var(--yellow);
    cursor: pointer;
    transform: translateY(-3px) scale(1.05);
    border-radius: 25px;
}

/* ===== Hero ===== */
.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    position: relative;
}

.heroSwiper {
    width: 100%;
    height: 60vh;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--white), 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 8%;
    max-width: 900px;
}

.hero h1,
.hero h2 {
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.hero-slide p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero span {
    color: var(--yellow);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--blue);
    background: rgba(var(--gray-light), 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(var(--gray-light), 0.3);
    box-shadow: 0 0 20px rgba(var(--gray-light), 0.4);
    transform: scale(1.1) rotate(5deg);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: rgba(var(--white), 0.5);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-pagination-bullet-active {
    background: var(--blue);
    box-shadow: 0 0 20px rgba(var(--gray-light), 0.8);
    animation: glowPulse 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {

    .hero-slide img {
        object-position: left center;
    }

    .hero h1,
    .hero h2 {
        font-size: 2rem;
    }

    .hero-slide p {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

/* ===== About Section ===== */
section {
    animation: fadeInUp 0.8s ease-out;
}

#about {
    max-width: 1640px;
    margin: auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
    animation: fadeInUp 0.8s ease-out;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text h3 i {
    color: var(--yellow);
    margin-right: 10px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background-color: var(--white); 
    backdrop-filter: blur(40px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(var(--gray-dark), 0.15), inset 0 1px 0 rgba(var(--white), 0.5);
    border: 1px solid rgba(var(--gray-dark), 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.8s ease-out;
    cursor: pointer;
}
@media (max-width: 768px) {
    .stat-card {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

.stat-card:hover {
    box-shadow: 0 12px 24px rgba(var(--green), 0.25), 0 4px 8px rgba(var(--gray-dark), 0.1);
    transform: translateY(-8px) scale(1.03);
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

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

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

    .about-text h3 {
        font-size: 1.3rem;
    }

    .stat-card {
        padding: 20px;
    }

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

    #courses h2 {
        text-align: center;
    }

    #courses p {
        text-align: center;
    }
}

/* ===== Courses Section ===== */
#courses {
    max-width: 1640px;
    margin: auto;
}

.courses-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background-color: var(--white);
    backdrop-filter: blur(40px);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(var(--gray-dark), 0.12), inset 0 1px 0 rgba(var(--white), 0.4);
    border: 1px solid var(--gray-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.8s ease-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.course-card h3 {
    color: var(--blue);
    margin-bottom: 12px;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(var(--blue), 0.15);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.course-header h3 {
    color: var(--blue);
    font-size: 1.6rem;
    flex: 1;
    margin: 0;
}

.course-header h3 i {
    color: var(--yellow);
    margin-right: 8px;
}

.difficulty-badge {
    background: var(--yellow);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(var(--yellow), 0.4);
    white-space: nowrap;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.difficulty-badge:hover {
    transform: scale(1.1);
}

.difficulty-badge.advanced {
    background: var(--blue);
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(var(--gray-light), 0.1);
}

.course-meta i {
    color: var(--blue);
    margin-right: 6px;
}

.course-duration,
.course-format {
    font-size: 0.95rem;
    color: var(--text-very-light);
}

.course-description {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.course-section {
    margin-bottom: 20px;
}

.course-section h4 {
    color: var(--blue);
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.course-section h4 i {
    color: var(--blue);
    margin-right: 8px;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    animation: fadeInUp 0.8s ease-out;
}

.course-list li {
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.course-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: bold;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-chip {
    background: rgba(var(--gray-light), 0.1);
    color: var(--blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.tool-chip:hover {
    background: rgba(var(--gray-light), 0.2);
    border-color: var(--gray-medium);
    transform: translateY(-2px) scale(1.05);
}

.course-section:last-of-type {
    margin-bottom: 25px;
}

.course-card .btn-small {
    align-self: flex-start;
    margin-top: auto;
}

.card {
    background: linear-gradient(135deg, rgba(var(--white), 0.9) 0%, rgba(var(--gray-light), 0.85) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(var(--gray-dark), 0.15);
    box-shadow: 0 6px 20px rgba(var(--gray-dark), 0.12), inset 0 1px 0 rgba(var(--white), 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.8s ease-out;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 28px rgba(var(--blue), 0.2), inset 0 1px 0 rgba(var(--white), 0.4);
    border-color: var(--blue);
    background: linear-gradient(135deg, rgba(var(--white), 0.95) 0%, rgba(var(--gray-light), 0.9) 100%);
}

.card h3 {
    color: var(--blue);
    margin-bottom: 10px;
}

/* ===== Why Choose Us Section ===== */
#why-us {
    max-width: 1640px;
    margin: auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-us-card {
    background-color: var(--white);
    backdrop-filter: blur(40px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(var(--gray-dark), 0.12), inset 0 1px 0 rgba(var(--white), 0.4);
    border: 1px solid rgba(var(--gray-dark), 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    cursor: pointer;
}

.why-us-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 28px rgba(var(--green), 0.2), inset 0 1px 0 rgba(var(--white), 0.4);
}

.why-us-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.why-us-icon i {
    background: linear-gradient(135deg, var(--blue), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--blue);
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-us-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--blue);
}

.why-us-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-card {
        padding: 25px;
    }

    .why-us-icon {
        font-size: 2.5rem;
    }

    .why-us-card h3 {
        font-size: 1.1rem;
    }

    .courses-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-card {
        flex: 1 1 auto;
    }
}

/* ===== Tools Section ===== */
.tools {
    text-align: center;
    border-top: 2px solid rgba(var(--gray-light), 0.2);
    max-width: 1640px;
    margin: auto;
}

.tools h2 {
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tools>p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
    max-width: 100%;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tool-tag {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 4px 12px rgba(var(--green), 0.3);
    border-radius: 25px;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* .tool-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--gray-light), 0.2), transparent);
    transition: left 0.5s ease;
} */

.tool-tag:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    box-shadow: 0 8px 20px rgba(var(--yellow), 0.3);
    transform: translateY(-4px) scale(1.08);
    border-radius: 20px;
}

/* .tool-tag:hover::before {
    left: 100%;
} */

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .tool-tag {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .tools>p {
        font-size: 1rem;
    }
}

/* ===== CTA Section ===== */
.cta {
    text-align: center;
    background: var(--gray-medium);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===== Contact Section ===== */
form {
    max-width: 800px;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 1px;
}

form textarea,
form button {
    grid-column: span 2;
    color: var(--gray-dark);
}

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

    form textarea,
    form button {
        grid-column: span 1;
    }
}

#contact {
    max-width: 1640px;
    margin: auto;
}

#contact p {
    margin-bottom: 15px;
}

#contact p i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.fa-location-dot {
    color: var(--yellow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.fa-location-dot:hover {
    transform: scale(1.2) rotate(10deg);
}

.fa-phone {
    color: var(--blue);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.fa-phone:hover {
    transform: scale(1.2) rotate(-10deg);
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid var(--gray-medium);
    background: var(--gray-light);
    color: var(--gray-dark);
    transition: all 0.3s ease;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease-out;
}
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 12px rgba(var(--blue), 0.2);
    transform: translateY(-2px);
}

input::placeholder,
select::placeholder {
    color: var(--text-light);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--gray-medium);
    background: var(--gray-light);
    box-shadow: 0 0 20px var(--gray-light);
}
#contactForm .btn-primary {
    grid-column-start: 1;
    grid-column-end: 2;
}

@media (max-width: 768px) {
    #contactForm .btn-primary {
        grid-column-start: 1;
        grid-column-end: 3;
    }
    #contactForm input,
    #contactForm select,
    #contactForm textarea {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

/* ===== Footer ===== */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--gray-light);
    color: var(--text-light);
    font-size: 0.9rem;
}


