/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ed2d91;      /* Vibrant pink - from logo */
    --primary-dark: #d1147a;  /* Darker pink for hover states */
    --secondary: #373435;     /* Charcoal gray - from logo */
    --accent: #f8b4d9;        /* Soft pink accent */
    --light: #faf7f2;         /* Warm off-white */
    --dark: #1e2a3a;          /* Deep navy */
    --text: #4a5568;          /* Soft charcoal */
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #ed2d91 0%, #f8b4d9 100%);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 30px 50px rgba(237, 45, 145, 0.15);
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

h1, h2, h3, h4, h5 {
    /*font-family: 'Playfair Display', serif;*/
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--secondary);
}

h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); }
h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h4 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* ===== HEADER & MOBILE NAVIGATION ===== */
header {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 30px rgba(237, 45, 145, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: slideDown 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    border-bottom: 1px solid rgba(237, 45, 145, 0.15);
}

@keyframes slideDown {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    background: linear-gradient(135deg, #ed2d91 0%, #373435 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    /*font-family: 'Playfair Display', serif;*/
    z-index: 1001;
}

.logo::after {
    content: '✦';
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    background: none;
    -webkit-text-fill-color: var(--primary);
    position: absolute;
    right: -20px;
    top: -5px;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.5; transform: scale(1.2) rotate(180deg); }
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--secondary);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    padding: 0.5rem 0;
    font-family: 'IBM Plex Sans', sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    white-space: nowrap;
}

.nav-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::before {
    width: 100%;
}

.nav-menu > li > a::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-menu > li:nth-child(1) > a::after,
.nav-menu > li:nth-child(2) > a::after,
.nav-menu > li:nth-child(4) > a::after {
    display: none;
}

.nav-menu > li:hover > a::after {
    transform: rotate(180deg);
}

.nav-menu > li > a:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    min-width: 280px;
    box-shadow: 0 20px 40px rgba(237, 45, 145, 0.08);
    border: 1px solid rgba(237, 45, 145, 0.15);
    border-top: 3px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 100;
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 4px;
}

.nav-menu > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-menu li {
    padding: 0;
    opacity: 0;
    transform: translateX(-10px);
    animation: slideIn 0.3s ease forwards;
}

.dropdown-menu li:nth-child(1) { animation-delay: 0.05s; }
.dropdown-menu li:nth-child(2) { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(3) { animation-delay: 0.15s; }
.dropdown-menu li:nth-child(4) { animation-delay: 0.2s; }
.dropdown-menu li:nth-child(5) { animation-delay: 0.25s; }
.dropdown-menu li:nth-child(6) { animation-delay: 0.3s; }

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

.dropdown-menu a {
    text-decoration: none;
    color: var(--text);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-transform: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(237, 45, 145, 0.1), transparent);
    transition: width 0.3s ease;
}

.dropdown-menu a:hover::before {
    width: 100%;
}

.dropdown-menu a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 2rem;
}

/* ===== BANNER SECTION ===== */
.banner {

    text-align: center;
    color: white;
    position: relative;
    animation: zoomFade 1.5s ease-out;
}

@keyframes zoomFade {
    0% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(55, 52, 53, 0.7) 0%, rgba(237, 45, 145, 0.5) 100%);
    z-index: 1;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.9; }
}

.banner-content {
    position: relative;
    z-index: 2;
    animation: slideUp 1.2s ease-out 0.3s both;
    max-width: 900px;
    padding: 0 20px;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.banner h1 {
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(55, 52, 53, 0.5);
    letter-spacing: clamp(2px, 3vw, 6px);
    color: white;
    animation: textGlow 3s ease-in-out infinite;
    font-size: 70px;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 2px 2px 4px rgba(55, 52, 53, 0.5); }
    50% { text-shadow: 0 0 20px rgba(237, 45, 145, 0.5), 2px 2px 4px rgba(55, 52, 53, 0.5); }
}

.banner p {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: white;
    /*font-family: 'Playfair Display', serif;*/
    letter-spacing: clamp(1px, 2vw, 3px);
    font-weight: 300;
}

/* ===== SECTION STYLES ===== */
section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(237, 45, 145, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--secondary);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
    animation: fadeInLeft 1s ease;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(60px, 15vw, 100px);
    height: 2px;
    background: var(--gradient);
    animation: expandWidth 1.5s ease;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: clamp(60px, 15vw, 100px); }
}

.section-title.center {
    text-align: center;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--primary);
    margin-bottom: 2rem;
    /*font-family: 'Playfair Display', serif;*/
    letter-spacing: clamp(1px, 1.5vw, 2px);
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== CARDS GRID ===== */
.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin: clamp(2rem, 5vw, 3rem) 0;
}

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

.card {
    background: white;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(237, 45, 145, 0.1);
    animation: cardAppear 0.8s ease-out;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(237, 45, 145, 0.05) 0%, transparent 70%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

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

.card:hover::after {
    transform: scale(1.5);
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardAppear {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.card h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.card:hover h3 {
    color: var(--primary);
}

.card-icon {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem clamp(1.5rem, 4vw, 2rem);
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    letter-spacing: clamp(1px, 1.5vw, 2px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.8s ease, height 0.8s ease;
    z-index: -1;
}

.btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 45, 145, 0.3);
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    margin: 2rem 0;
}

.feature {
    text-align: center;
    padding: clamp(1rem, 3vw, 2rem);
    transition: all 0.3s ease;
}

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

.feature-number {
    font-size: clamp(2rem, 6vw, 3rem);
    /*font-family: 'Playfair Display', serif;*/
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature:hover .feature-number {
    opacity: 0.8;
    transform: scale(1.2);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, #f5f0e9 0%, #e8dfd4 100%);
    padding: clamp(3rem, 8vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(237, 45, 145, 0.03) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.testimonial-card {
    background: white;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 4px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: '"';
    font-size: clamp(3rem, 10vw, 6rem);
    /*font-family: 'Playfair Display', serif;*/
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    left: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 0.3;
    transform: rotate(10deg) scale(1.2);
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-image {
    transform: scale(1.1);
    border-color: var(--secondary);
}

/* ===== STATS SECTION ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) 0;
}

.stat-number {
    font-size: clamp(2rem, 6vw, 3.5rem);
    /*font-family: 'Playfair Display', serif;*/
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.stat-item:hover .stat-number {
    transform: scale(1.2);
    color: var(--secondary);
}

.stat-label {
    font-size: clamp(0.8rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 1.5vw, 2px);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--primary);
}

/* ===== GALLERY ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #ddd;
    margin: clamp(2rem, 5vw, 3rem) 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(237, 45, 145, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    /*font-family: 'Playfair Display', serif;*/
    font-size: clamp(1rem, 3vw, 1.5rem);
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    text-align: center;
    padding: 0 10px;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 4vw, 2rem);
    margin: clamp(2rem, 5vw, 3rem) 0;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-image {
    width: clamp(120px, 25vw, 200px);
    height: clamp(120px, 25vw, 200px);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--primary);
    padding: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.team-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(237, 45, 145, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-member:hover .team-image {
    border-color: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(237, 45, 145, 0.3);
}

.team-member:hover .team-image::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-role {
    color: var(--primary);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 1.5vw, 2px);
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.team-member:hover .team-role {
    color: var(--secondary);
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: clamp(2rem, 5vw, 3rem) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    animation: timelinePulse 3s ease-in-out infinite;
}

@keyframes timelinePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin: clamp(2rem, 5vw, 3rem) 0;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: timelineAppear 0.8s ease forwards;
}

.timeline-item:nth-child(even) {
    transform: translateX(30px);
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

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

.timeline-content {
    width: 45%;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 45, 145, 0.05) 0%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.timeline-content:hover::before {
    transform: translateX(0);
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-year {
    font-size: clamp(1.5rem, 4vw, 2rem);
    /*font-family: 'Playfair Display', serif;*/
    color: var(--primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.timeline-content:hover .timeline-year {
    color: var(--secondary);
}

/* ===== CONTACT FORM ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    background: white;
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 4px;
    box-shadow: var(--shadow);
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contact-info {
    background: var(--secondary);
    color: white;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(237, 45, 145, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    flex-wrap: wrap;
}

.contact-detail:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(237, 45, 145, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-detail:hover .contact-icon {
    background: rgba(237, 45, 145, 0.4);
    transform: scale(1.1) rotate(360deg);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-bottom: 1px solid #d4c9bc;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    transition: all 0.3s ease;
    background: transparent;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
    transform: translateY(-2px);
}

.form-group label {
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -0.8rem;
    left: 0;
    font-size: 0.75rem;
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--secondary);
    color: #e5ddd2;
    padding: clamp(3rem, 8vw, 4rem) 0 clamp(1.5rem, 4vw, 2rem);
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    animation: slideBorder 3s ease-in-out infinite;
}

@keyframes slideBorder {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0.8); }
}

footer::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(237, 45, 145, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(2rem, 5vw, 3rem);
    position: relative;
    z-index: 1;
}

.footer-col {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }

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

.footer-col h4 {
    color: var(--primary);
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: clamp(1px, 1.5vw, 2px);
    /*font-family: 'Playfair Display', serif;*/
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 100%;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-col ul li:hover {
    transform: translateX(5px);
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    display: inline-block;
    position: relative;
}

.footer-col a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(15px);
}

.footer-col a:hover::before {
    opacity: 1;
    left: -20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(0.8rem, 2.5vw, 0.85rem);
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease 1s both;
}
.footer-bottom p{
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

/* ===== ADDITIONAL ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

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

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
}

.reveal.fade-bottom {
    transform: translateY(50px);
}

.reveal.fade-bottom.active {
    transform: translateY(0);
}

.reveal.fade-left {
    transform: translateX(-50px);
}

.reveal.fade-left.active {
    transform: translateX(0);
}

.reveal.fade-right {
    transform: translateX(50px);
}

.reveal.fade-right.active {
    transform: translateX(0);
}

/* ===== LOADING ANIMATION ===== */
.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(237, 45, 145, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 98%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 1rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        white-space: normal;
        padding: 0.8rem 0;
        font-size: 1rem;
    }
    
    .nav-menu > li > a::after {
        margin-left: auto;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary);
        margin-left: 1rem;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: transparent;
        min-width: auto;
    }
    
    .nav-menu > li:hover .dropdown-menu {
        transform: none;
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu li {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .dropdown-menu a {
        white-space: normal;
        padding: 0.6rem 1rem;
    }
    
    .dropdown-menu a::before {
        display: none;
    }
    
    .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }
    
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        transform: none !important;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 60px !important;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .banner-content {
        padding: 0 15px;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-subtitle {
        text-align: center;
    }
}

/* Overlay for mobile menu */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}