/* =========================================== */
/* assets/css/style.css - MAIN STYLESHEET      */
/* Ultra-premium design for Dar Al Kuwait      */
/* =========================================== */

/* ===== RESET & GLOBAL VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Tajawal', sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.7;
    overflow-x: hidden;
}

body.en {
    font-family: 'Inter', 'Montserrat', sans-serif;
}

body.ar {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
}

/* ===== PREMIUM COLOR PALETTE ===== */
:root {
    --navy: #0B1C2D;
    --navy-light: #1a2f42;
    --navy-dark: #07121f;
    --deep-blue: #112F45;
    --gold: #C6A75E;
    --gold-light: #d4b87a;
    --gold-dark: #a8893f;
    --charcoal: #111111;
    --silver: #E5E5E5;
    --soft-gray: #9CA3AF;
    --white: #FFFFFF;
    --black: #000000;
    --shadow-sm: 0 10px 30px -15px rgba(0,0,0,0.2);
    --shadow-md: 0 20px 40px -20px rgba(0,0,0,0.3);
    --shadow-lg: 0 30px 60px -25px rgba(0,0,0,0.4);
    --shadow-gold: 0 20px 40px -10px rgba(198,167,94,0.3);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

body.en h1, body.en h2, body.en h3, body.en h4 {
    font-family: 'Montserrat', sans-serif;
}

body.ar h1, body.ar h2, body.ar h3, body.ar h4 {
    font-family: 'Cairo', sans-serif;
}

.gold-text {
    color: var(--gold);
}

.outline-text {
    -webkit-text-stroke: 2px var(--gold);
    color: transparent;
    text-stroke: 2px var(--gold);
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--soft-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-padding {
    padding: 7rem 0;
}

.bg-luxury {
    background: #faf9f7;
}

.bg-navy {
    background: var(--navy);
    color: var(--white);
}

.text-center {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn-gold, .btn-outline, .btn-dark {
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transition: var(--transition);
    z-index: -1;
}

.btn-gold:hover::before {
    left: 0;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--navy);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-dark:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-massive {
    padding: 22px 70px;
    font-size: 1.3rem;
}

/* ===== HEADER - ULTRA PREMIUM STICKY ===== */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(11, 28, 45, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(198, 167, 94, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    position: relative;
}

.logo h1, .logo h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
}

.logo span {
    color: var(--gold);
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::before {
    width: 100%;
}

.contact-header-btn {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 12px 28px;
    border-radius: 0;
}

.contact-header-btn::before {
    display: none;
}

.lang-switch {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(198, 167, 94, 0.3);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--soft-gray);
    font-weight: 600;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--navy);
}

/* Arabic RTL adjustments */
body.ar .nav-links a::before {
    right: 0;
    left: auto;
}

/* ===== HERO SECTION - CINEMATIC ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 28, 45, 0.95) 0%, rgba(17, 47, 69, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(198, 167, 94, 0.15);
    border: 1px solid var(--gold);
    padding: 8px 24px;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 3px;
    backdrop-filter: blur(5px);
    font-size: 0.9rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: var(--silver);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--silver);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: float 2s infinite;
}

/* ===== ABOUT PREVIEW SECTION ===== */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.luxury-grid {
    gap: 100px;
}

.about-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    border: 8px solid var(--gold);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    color: var(--navy);
    padding: 2.5rem;
    text-align: center;
    min-width: 180px;
    box-shadow: var(--shadow-gold);
}

.experience-badge .years {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.experience-badge .years-text {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.signature-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2.5rem;
}

.signature img {
    max-width: 150px;
    height: auto;
}

.signature-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
}

.signature-title {
    font-size: 0.9rem;
    color: var(--gold);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-card {
    background: var(--white);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(198,167,94,0.05) 0%, transparent 100%);
    transition: var(--transition);
    z-index: 0;
}

.premium-card:hover {
    transform: translateY(-15px);
    border-bottom-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.premium-card:hover::before {
    height: 100%;
}

.card-icon {
    position: relative;
    z-index: 1;
}

.card-icon i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.premium-card:hover .card-icon i {
    transform: scale(1.1);
}

.premium-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.premium-card p {
    position: relative;
    z-index: 1;
    color: var(--soft-gray);
}

.card-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(11,28,45,0.95), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.premium-card:hover .card-hover-content {
    transform: translateY(0);
}

.learn-more {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    position: relative;
    overflow: hidden;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 50%, rgba(198,167,94,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(198,167,94,0.2);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(198,167,94,0.15);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--gold);
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper i {
    color: var(--navy);
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--soft-gray);
}

/* ===== TECHNOLOGY SECTION ===== */
.tech-showcase {
    margin-top: 2rem;
}

.tech-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(198,167,94,0.1);
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.tech-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.tech-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.tech-info p {
    color: var(--soft-gray);
}

.tech-image-wrapper {
    position: relative;
}

.tech-frame {
    border-width: 12px;
    transform: rotate(2deg);
}

.tech-frame img {
    transform: rotate(-2deg) scale(1.05);
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.command-card {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.command-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.command-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.command-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.command-card:hover .command-image img {
    transform: scale(1.1);
}

.command-rank {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    color: var(--navy);
    padding: 1rem;
    font-weight: 700;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.command-card:hover .command-rank {
    transform: translateY(0);
}

.command-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: var(--navy);
}

.command-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--soft-gray);
}

/* ===== CERTIFICATIONS SECTION ===== */
.cert-showcase {
    background: var(--white);
    padding: 4rem;
    box-shadow: var(--shadow-lg);
}

.cert-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cert-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.cert-header p {
    color: var(--soft-gray);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-item {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.cert-item:hover {
    transform: scale(1.05);
    border-color: var(--white);
}

.cert-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.cert-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CALL TO ACTION ===== */
.grand-cta {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.cta-background {
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,28,45,0.97) 0%, rgba(17,47,69,0.95) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--silver);
    max-width: 600px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--charcoal);
    color: var(--silver);
    border-top: 4px solid var(--gold);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--silver);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-col p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* ===== FLOATING ELEMENTS ===== */
.floating-wa, .floating-call, .back-to-top {
    position: fixed;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 999;
    border: none;
    transition: var(--transition);
}

.floating-wa {
    bottom: 100px;
    background: #25D366;
    color: white;
}

.floating-wa:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(37,211,102,0.4);
}

.floating-call {
    bottom: 170px;
    background: var(--navy);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.floating-call:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

.back-to-top {
    bottom: 30px;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
}

.back-to-top:hover {
    background: var(--navy);
    color: var(--gold);
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0% { transform: translateY(0px) translateX(-50%); }
    50% { transform: translateY(-10px) translateX(-50%); }
    100% { transform: translateY(0px) translateX(-50%); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

.animate-float {
    animation: float 3s infinite;
}

.reveal-text {
    animation: reveal 1.5s ease;
}

.fade-in {
    animation: fadeIn 1.5s ease;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
}

.fade-in-delay {
    animation: fadeIn 1.5s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1.5s ease 0.6s forwards;
    opacity: 0;
}

/* Delay utilities */
[data-delay="0.1s"] { animation-delay: 0.1s; }
[data-delay="0.2s"] { animation-delay: 0.2s; }
[data-delay="0.3s"] { animation-delay: 0.3s; }
[data-delay="0.4s"] { animation-delay: 0.4s; }
[data-delay="0.5s"] { animation-delay: 0.5s; }

/* ===== RTL ADJUSTMENTS ===== */
body.ar .hero-buttons {
    flex-direction: row-reverse;
}

body.ar .signature-block {
    flex-direction: row-reverse;
}

body.ar .tech-item {
    flex-direction: row-reverse;
}

body.ar .experience-badge {
    right: auto;
    left: -30px;
}

body.ar .footer-col p {
    flex-direction: row-reverse;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1000px) {
    .services-grid,
    .features-grid,
    .leadership-grid,
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-column-grid {
        gap: 40px;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 800px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
        padding: 1rem 0;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .features-grid,
    .leadership-grid,
    .cert-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-gold, .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .experience-badge {
        bottom: -15px;
        right: -15px;
        padding: 1.5rem;
        min-width: 120px;
    }
    
    .experience-badge .years {
        font-size: 2.5rem;
    }
}

@media (max-width: 500px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cert-showcase {
        padding: 2rem;
    }
}