* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    padding-top: var(--nav-height, 80px);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(194, 141, 45, 0.1);
}

nav.scrolled { background: rgba(0, 0, 0, 0.98); padding: 0.4rem 0; }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text { 
    display: flex; 
    flex-direction: column; 
    flex-shrink: 0;
}
.logo-main { 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: #ffffff; 
    line-height: 1.1;
}
.logo-sub { 
    font-size: 0.75rem; 
    color: #c28d2d; 
    font-weight: 400; 
    line-height: 1.1;
}

.nav-menu { 
    display: flex; 
    list-style: none; 
    gap: 2rem; 
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}
.nav-menu a {
    color: #ffffff; 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.9rem;
    transition: all 0.3s ease; 
    position: relative; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.nav-menu a:hover { color: #c28d2d; }
.nav-menu a.active { color: #c28d2d; }
.nav-menu a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0;
    background: linear-gradient(135deg, #c28d2d, #d4a574); transition: width 0.3s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.social-icons { 
    display: flex; 
    gap: 0.8rem; 
    align-items: center; 
    flex-shrink: 0;
}
.social-icon {
    width: 26px; 
    height: 26px; 
    border-radius: 4px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: white; 
    text-decoration: none; 
    font-size: 0.85rem; 
    transition: all 0.3s ease;
}
.social-icon.facebook { background: #1877f2; }
.social-icon.youtube { background: #ff0000; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.instagram { background: #e4405f; }
.social-icon:hover { transform: translateY(-2px); }

.contact-btn {
    background: linear-gradient(135deg, #c28d2d, #d4a574); 
    color: white; 
    padding: 0.6rem 1.3rem;
    border: none; 
    border-radius: 25px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.85rem;
    transition: all 0.3s ease; 
    margin-left: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(194, 141, 45, 0.4); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.mobile-menu-btn { 
    display: none; 
    background: none; 
    border: none; 
    color: #ffffff; 
    font-size: 1.5rem; 
    cursor: pointer; 
}

/* Page container */
.page { display: block; min-height: 100vh; padding-top: 0; }

/* Hero (Home) - Inspired by La Centrale */
.hero { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    position: relative; 
    overflow: hidden;
    background: linear-gradient(
        135deg, 
        #0a0a0a 0%, 
        /* #1a1a1a 50%, 
        #0a0a0a 100% */
        );
}

.hero-bg {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff6b35" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -2;
}

.hero-animation { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
}

.floating-element {
    position: absolute; 
    width: 300px; 
    height: 300px; 
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.05) 70%, transparent 100%);
    filter: blur(60px); 
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) { 
    top: 15%; 
    left: 5%; 
    animation-delay: 0s; 
    width: 400px;
    height: 400px;
}
.floating-element:nth-child(2) { 
    top: 50%; 
    right: 10%; 
    animation-delay: 3s; 
    width: 250px;
    height: 250px;
}
.floating-element:nth-child(3) { 
    bottom: 10%; 
    left: 60%; 
    animation-delay: 6s; 
    width: 350px;
    height: 350px;
}

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

.hero-content {
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 2rem; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 6rem; 
    align-items: center; 
    justify-items: center;
    z-index: 2;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 400px;
    height: 500px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.hero-text h1 {
    font-size: clamp(3rem, 8vw, 6rem); 
    font-weight: 900; 
    margin-bottom: 1.5rem;
    /* background: linear-gradient(135deg, #ffffff 0%, #ff6b35 30%, #f7931e 70%, #ffffff 100%); */
    background: none;
    -webkit-background-clip: text; 
    -webkit-text-fill-color: #ff6b35; 
    background-clip: text; 
    animation: slideInLeft 1.2s ease-out;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Center hero text block and actions on large screens */
.hero .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline { 
    font-size: 1.1rem; 
    margin-bottom: 1rem; 
    color: #ff6b35; 
    font-weight: 600; 
    animation: slideInLeft 1.2s ease-out 0.3s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-slogan { 
    font-size: 1.5rem; 
    font-weight: 500; 
    color: #d0d0d0; 
    margin-bottom: 2.5rem; 
    animation: slideInLeft 1.2s ease-out 0.6s both;
    line-height: 1.4;
}

.hero-description { 
    font-size: 1.2rem; 
    color: #b0b0b0; 
    line-height: 1.8; 
    margin-bottom: 3.5rem; 
    animation: slideInLeft 1.2s ease-out 0.9s both;
    max-width: 500px;
}

.cta-buttons { 
    display: flex; 
    gap: 1.5rem; 
    animation: slideInLeft 1.2s ease-out 1.2s both;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    display: inline-block; 
    padding: 1.2rem 2.5rem; 
    border-radius: 50px; 
    font-weight: 600; 
    text-decoration: none;
    transition: all 0.4s ease; 
    position: relative; 
    overflow: hidden;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary { 
    background: linear-gradient(135deg, #ff6b35, #f7931e); 
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-secondary { 
    background: transparent; 
    color: #ff6b35; 
    border: 2px solid #ff6b35;
    backdrop-filter: blur(10px);
}

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

.cta-primary:hover { 
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

.cta-secondary:hover { 
    background: #ff6b35; 
    color: white;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

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

.hero-3d { 
    position: relative; 
    width: 500px; 
    height: 500px; 
    justify-self: center;
    perspective: 1000px;
}

.logo-3d {
    width: 100%; 
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 30%, #d4851f 70%, #ff6b35 100%);
    transform-style: preserve-3d; 
    animation: rotate3d 12s infinite linear;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    position: relative;
    box-shadow: 
        0 0 50px rgba(255, 107, 53, 0.3),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
}

.logo-3d-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

@keyframes rotate3d { 
    0% { transform: rotateY(0) rotateX(20deg) rotateZ(0deg);} 
    100% { transform: rotateY(360deg) rotateX(20deg) rotateZ(360deg);} 
}

/* Stats section - Inspired by La Centrale */
.stats-section {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ff6b35;
    background-clip: text;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-preview-card {
    background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.service-preview-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-preview-card:hover .service-preview-img {
    transform: scale(1.05);
}

.service-preview-content {
    padding: 2rem;
}

.service-preview-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-preview-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-preview-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-preview-link:hover {
    color: #f7931e;
    transform: translateX(5px);
}

/* Shared page sections - Inspired by La Centrale */
.page-content { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 3rem 2rem; 
}

.page-header { 
    text-align: center; 
    margin-bottom: 5rem; 
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    font-weight: 800; 
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #ff6b35, #f7931e);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.page-subtitle { 
    font-size: 1.4rem; 
    color: #d0d0d0; 
    max-width: 900px; 
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards grid - Inspired by La Centrale */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); 
    gap: 2.5rem; 
    margin: 4rem 0; 
}

.service-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d); 
    padding: 3rem; 
    border-radius: 25px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 107, 53, 0.1); 
    position: relative; 
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35); 
    transform: scaleX(0); 
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

.service-card:hover { 
    transform: translateY(-15px) scale(1.02); 
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.4),
        0 0 40px rgba(255, 107, 53, 0.2); 
    border-color: rgba(255,107,53,0.4);
    background: linear-gradient(145deg, #1f1f1f, #333333);
}

.service-icon {
    width: 90px; 
    height: 90px; 
    background: linear-gradient(135deg, #ff6b35, #f7931e); 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 2rem auto; 
    font-size: 2.5rem;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.4),
        inset 0 2px 15px rgba(255, 255, 255, 0.3);
}

.service-card h3 { 
    font-size: 1.6rem; 
    font-weight: 700; 
    margin-bottom: 1.2rem; 
    color: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ff6b35;
    background-clip: text;
}

.service-card p { 
    color: #d0d0d0; 
    line-height: 1.7; 
    margin-bottom: 1.5rem; 
    font-size: 1.05rem;
}

.service-features { 
    list-style: none; 
    padding: 0; 
}

.service-features li { 
    color: #b8b8b8; 
    margin-bottom: 0.8rem; 
    position: relative; 
    padding-left: 2rem; 
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.service-features li::before { 
    content: '✓'; 
    position: absolute; 
    left: 0; 
    color: #ff6b35; 
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(255, 107, 53, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-features li:hover::before {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

/* Team - Inspired by La Centrale */
.team-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 3rem; 
    margin: 4rem 0; 
}

.team-member { 
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d); 
    border-radius: 25px; 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border: 1px solid rgba(255,107,53,0.1);
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-member:hover { 
    transform: translateY(-10px) scale(1.02); 
    border-color: rgba(255,107,53,0.3);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.3),
        0 0 30px rgba(255, 107, 53, 0.2);
}

.team-member:hover::before {
    opacity: 1;
}

.member-photo { 
    height: 280px; 
    background: linear-gradient(135deg, #ff6b35, #f7931e, #d4851f); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 5rem; 
    color: white;
    position: relative;
    overflow: hidden;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.team-member:hover .member-photo::before {
    transform: translateX(100%);
}

.member-info { 
    padding: 2rem; 
    position: relative;
    z-index: 2;
}

.member-name { 
    font-size: 1.4rem; 
    font-weight: 700; 
    color: #ffffff; 
    margin-bottom: 0.8rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-role { 
    color: #ff6b35; 
    font-weight: 600; 
    margin-bottom: 1.2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio { 
    color: #d0d0d0; 
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact - Inspired by La Centrale */
.contact-form {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d); 
    padding: 2.5rem; 
    border-radius: 8px; 
    border: 1px solid rgba(255, 107, 53, 0.1); 
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.8rem;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus { 
    outline: none; 
    border-color: #ff6b35; 
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.5rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #f7931e, #ff6b35);
}

/* Footer */
footer { background: #000000; padding: 3rem 0 1rem; border-top: 1px solid #333; }
.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.footer-section h3 { color: #ff6b35; margin-bottom: 1rem; font-size: 1.2rem; }
.footer-section p, .footer-section a { color: #cccccc; text-decoration: none; line-height: 1.6; }
.footer-section a:hover { color: #ff6b35; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #333; color: #888; }

/* Fade-in on scroll */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Location banner */
.location-banner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
    background: #ffffff0d;
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-left: 6px solid #0b4d78;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.loc-pin {
    font-size: 1.8rem;
    color: #ff6b35;
}

.loc-title {
    color: #cde6f7;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.loc-sub {
    color: #b8c8d4;
    font-size: 0.95rem;
}

/* Contact page - two columns (form + info) */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: stretch; /* make columns equal height capable */
}

.contact-card-white {
    background: #ffffff;
    color: #0a0a0a;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.contact-card-white .form-group label { color: #0a0a0a; }
.contact-card-white .form-group input,
.contact-card-white .form-group textarea {
    background: #f6f6f6;
    border: 1px solid #e5e5e5;
    color: #0a0a0a;
}
.submit-btn.gradient { background: linear-gradient(90deg, #b06b1e, #d4953b); color:#fff; }

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.contact-info-item { 
    background: #ffffff;
    color: #0a0a0a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #f7931e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #f7931e;
    background: transparent;
}

.info-content {
    text-align: center;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.8rem;
    text-transform: none;
    letter-spacing: normal;
}

.info-text {
    color: #666666;
    line-height: 1.5;
    font-size: 1rem;
}

.contact-map { margin-top: 2.5rem; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* IFPA Section */
.ifpa-section {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.ifpa-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.ifpa-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 10px 20px rgba(255, 107, 53, 0.3));
}

.ifpa-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ifpa-header p {
    font-size: 1.2rem;
    color: #d0d0d0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.ifpa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ifpa-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.ifpa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.ifpa-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.ifpa-content {
    padding: 1.5rem;
}

.ifpa-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.ifpa-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
    text-align: center;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.formation-video {
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.video-caption {
    color: #cccccc;
    font-size: 1rem;
    font-style: italic;
}

/* IFPA Hero Section */
.ifpa-hero {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.ifpa-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ifpa-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.ifpa-hero-description {
    font-size: 1.3rem;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ifpa-hero-highlight {
    font-size: 1.2rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.ifpa-cta {
    margin-top: 2rem;
}

.ifpa-cta-text {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.ifpa-cta-final {
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.ifpa-hero-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.3));
}

/* IFPA page hero image (portrait) */
.hero-section.ifpa-landing .hero-image img {
    width: 100%;
    max-width: 600px;
    height: 700px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-section.ifpa-landing .hero-content {
        display: flex;
        flex-direction: column;
    }
    .hero-section.ifpa-landing .hero-image { order: -1; }
    .hero-section.ifpa-landing .hero-image img {
        max-width: 360px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-section.ifpa-landing .hero-image img {
        max-width: 280px;
        height: auto;
    }
}

/* Formation Programs */
.formation-programs {
    padding: 4rem 0;
}

.formation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.formation-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.formation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.formation-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.formation-content {
    padding: 2rem;
}

.formation-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.formation-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.formation-features {
    list-style: none;
    padding: 0;
}

.formation-features li {
    color: #b8b8b8;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.formation-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Why Choose IFPA */
.why-ifpa {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
}

.why-ifpa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-ifpa-item {
    text-align: center;
    padding: 2rem;
}

.why-ifpa-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-ifpa-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.why-ifpa-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Auto Hero Section */
.auto-hero {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.auto-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.auto-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.auto-hero-description {
    font-size: 1.3rem;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.auto-hero-highlight {
    font-size: 1.2rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.auto-hero-details {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.auto-cta {
    margin-top: 2rem;
}

.auto-cta-text {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.auto-cta-final {
    font-size: 1.1rem;
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.auto-hero-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.3));
}

/* Auto Services */
.auto-services {
    padding: 4rem 0;
}

.auto-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.auto-service-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.auto-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.auto-service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.auto-service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.auto-service-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.auto-service-features {
    list-style: none;
    padding: 0;
}

.auto-service-features li {
    color: #b8b8b8;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.auto-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Fleet Section */
.fleet-section {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fleet-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.fleet-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.fleet-category {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Why Choose Auto */
.why-auto {
    padding: 4rem 0;
}

.why-auto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-auto-item {
    text-align: center;
    padding: 2rem;
}

.why-auto-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-auto-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.why-auto-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-header p {
    font-size: 1.2rem;
    color: #d0d0d0;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.process-step p {
    color: #cccccc;
    line-height: 1.6;
}

/* Results Section */
.results-section {
    padding: 4rem 0;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-header p {
    font-size: 1.2rem;
    color: #d0d0d0;
    max-width: 600px;
    margin: 0 auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.result-item {
    text-align: center;
    padding: 2rem;
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.result-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-item p {
    color: #cccccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Event Types */
.event-types {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.event-type-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.event-type-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.event-type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.event-type-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.event-type-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Mobile - Enhanced responsiveness */
@media (max-width: 768px) {
    .nav-container {
        gap: 1rem;
    }
    
    .nav-menu { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-top: 1px solid rgba(255, 107, 53, 0.1);
    }
    
    .mobile-menu-btn { display: block; }
    .social-icons, .contact-btn { display: none; }

    .hero-content, .ifpa-hero-content, .auto-hero-content { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 3rem;
    }
    /* Home hero: ensure description precedes buttons on mobile */
    .hero .hero-content { display: flex; flex-direction: column; }
    .hero .hero-image { order: -1; }
    
    .hero-3d { 
        width: 300px; 
        height: 300px; 
        margin: 2rem auto; 
    }
    
    .hero-text h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .services-grid, .team-grid, .services-preview-grid, .formation-grid, .auto-services-grid, .fleet-grid, .why-ifpa-grid, .why-auto-grid, .process-steps, .results-grid, .event-types-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    
    .page-title { 
        font-size: clamp(2rem, 6vw, 3rem); 
    }
    
    .cta-buttons { 
        flex-direction: column; 
        align-items: center;
        gap: 1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

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

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .page-content {
        padding: 2rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: transparent;
    color: #ffffff;
}

.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.partners-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
    padding: 2rem 0;
}

.partners-scroll {
    display: flex;
    animation: scroll-left 18s linear infinite;
    width: max-content;
}

.partners-scroll:hover {
    animation-play-state: paused;
}

.partner-item {
    flex-shrink: 0;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-container {
    background: transparent;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: fill;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile responsiveness for partners */
@media (max-width: 768px) {
    .partners-header h2 {
        font-size: 2rem;
    }
    
    .partner-logo-container {
        width: 140px;
        height: 100px;
        padding: 1rem;
    }
    
    .partner-item {
        margin: 0 1rem;
    }
    
    .partners-scroll {
        animation-duration: 12s;
    }
}

@media (max-width: 480px) {
    .partners-header h2 {
        font-size: 1.8rem;
    }
    
    .partner-logo-container {
        width: 120px;
        height: 80px;
        padding: 0.8rem;
    }
    
    .partner-item {
        margin: 0 0.5rem;
    }
}

/* Automobile page hero - scoped overrides */
.hero-section {
    padding: 3rem 0;
}

/* Override the generic .hero-content only inside .hero-section */
.hero-section .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
}

.hero-section .hero-text img {
    width: 100%;
    max-width: 420px;
    max-height: clamp(120px, 35vh, 360px);
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.hero-section .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .hero-subtitle {
    font-size: 1rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0.5rem auto 1rem;
    line-height: 1.6;
}

.hero-section .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-section { padding: 2rem 0; }
    .hero-section .hero-content {
        padding: 0 1rem;
        gap: 1rem;
    }
    .hero-section .hero-text img {
        width: 100%;
        max-width: 320px;
        max-height: clamp(120px, 30vh, 300px);
    }
    .hero-section .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
    .hero-section .hero-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-section .hero-text img {
        width: 100%;
        max-width: 280px;
        max-height: clamp(100px, 28vh, 240px);
    }
}

/* Testimonial Section Styles */
.testimonial-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-quote p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2rem;
    color: var(--gold);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(194, 141, 45, 0.2);
    padding-top: 1rem;
}

.testimonial-author h4 {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-role {
    display: block;
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.graduation-year {
    display: block;
    color: var(--medium-gray);
    font-size: 0.8rem;
    font-style: italic;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 1.2rem;
    }
    
    .testimonial-quote p {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }
    
    .testimonial-quote p::before {
        font-size: 1.8rem;
    }
    
    .testimonial-author h4 {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.85rem;
    }
    
    .graduation-year {
        font-size: 0.75rem;
    }
}

/* Students Gallery Styles */
.students-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #f0f0f0;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
    opacity: 0;
}

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

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.3;
}

/* Responsive adjustments for students gallery */
@media (max-width: 768px) {
    .students-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .gallery-overlay h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .students-gallery {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-overlay {
        padding: 0.8rem;
    }
    
    .gallery-overlay h4 {
        font-size: 0.9rem;
    }
    
    .gallery-overlay p {
        font-size: 0.75rem;
    }
}
