
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #002244; /* Corporate Deep Blue */
    --secondary-color: #003366; /* Lighter Blue */
    --accent-color: #D4AF37; /* Premium Gold */
    --accent-hover: #b5952f;
    --text-dark: #222222;
    --text-light: #555555;
    --bg-light: #f8fafc;
    --white: #ffffff;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --shadow: 0 10px 30px rgba(0,0,0,0.04);
    --shadow-hover: 0 20px 40px rgba(0,34,68,0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-dark); background-color: var(--bg-light); line-height: 1.8; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--primary-color); letter-spacing: -0.5px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 30px; }
.section { padding: 100px 0; }
.section-bg { background-color: var(--white); }
.section-light { background-color: #f1f5f9; }

/* Global Utilities */
.text-accent { color: var(--accent-color) !important; }
.text-white { color: var(--white) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-dark { background-color: #00152b !important; }

/* Section Titles */
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h4 { font-size: 1rem; color: var(--accent-color); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; font-weight: 600; }
.section-header h2 { font-size: 2.8rem; color: var(--primary-color); position: relative; padding-bottom: 20px; display: inline-block; text-transform: capitalize; font-weight: 800; }
.section-header h2::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 80px; height: 4px; background: var(--accent-color); border-radius: 2px; }
.section-header p { color: var(--text-light); margin-top: 20px; font-size: 1.15rem; max-width: 750px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* Buttons */
.btn { display: inline-block; padding: 16px 36px; border-radius: 4px; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1.5px; transition: var(--transition); cursor: pointer; border: none; text-align: center; }
.btn-primary { background: var(--accent-color); color: var(--white); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25); }
.btn-primary:hover { background: var(--primary-color); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 34, 68, 0.2); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); border-color: var(--white); color: var(--primary-color); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25); }
.btn-dark { background: var(--primary-color); color: var(--white); }
.btn-dark:hover { background: var(--accent-color); color: var(--white); transform: translateY(-3px); }

/* Top Bar */
.top-bar { background: var(--primary-color); color: rgba(255,255,255,0.85); padding: 12px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-contact { display: flex; gap: 25px; }
.top-contact span { display: flex; align-items: center; gap: 8px; }
.top-contact i { color: var(--accent-color); }
.top-social { display: flex; gap: 15px; }
.top-social a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.top-social a:hover { color: var(--accent-color); }

/* Header */
header { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.03); position: sticky; top: 0; z-index: 1000; transition: var(--transition); }
.header-main { padding: 10px 0; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 85px; width: 100px; display: block; object-fit: contain; flex-shrink: 0; transition: var(--transition); }
.logo:hover img { transform: scale(1.04); }

.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links > li { position: relative; padding: 15px 0; }
.nav-links a { font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem; color: var(--primary-color); text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--accent-color); }

/* Dropdown Menu */
.dropdown { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 260px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); opacity: 0; visibility: hidden; transform: translateY(15px); transition: var(--transition); border-top: 3px solid var(--accent-color); z-index: 100; padding: 10px 0; border-radius: 0 0 4px 4px; }
.nav-links li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { border-bottom: 1px solid #f1f5f9; }
.dropdown li:last-child { border-bottom: none; }
.dropdown a { display: block; padding: 12px 24px; font-size: 0.85rem; text-transform: none; font-family: var(--font-body); font-weight: 600; color: var(--text-dark); letter-spacing: 0; }
.dropdown a:hover { background: #f8fafc; color: var(--accent-color); padding-left: 30px; }

/* Mobile Menu Toggle */
.hamburger { display: none; font-size: 1.6rem; color: var(--primary-color); cursor: pointer; transition: var(--transition); }
.hamburger:hover { color: var(--accent-color); }

/* Swiper Hero Slider */
.hero-slider { height: 90vh; width: 100%; }
.swiper-slide { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform 6s ease; }
.swiper-slide-active .slide-bg { transform: scale(1.08); }
.slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0, 21, 43, 0.75), rgba(0, 34, 68, 0.8)); }
.slide-content { position: relative; z-index: 10; text-align: center; color: var(--white); max-width: 1000px; padding: 0 30px; }
.slide-content h4 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--accent-color); text-transform: uppercase; letter-spacing: 4px; margin-bottom: 20px; font-weight: 600; }
.slide-content h1 { font-size: 4.5rem; color: var(--white); margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; line-height: 1.1; font-weight: 800; text-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.slide-content p { font-size: 1.35rem; margin-bottom: 45px; font-weight: 300; opacity: 0.95; line-height: 1.6; max-width: 800px; margin-left: auto; margin-right: auto; }
.swiper-button-next, .swiper-button-prev { color: var(--white) !important; width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; transition: var(--transition); }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--accent-color); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.5rem !important; }
.swiper-pagination-bullet { background: var(--white) !important; opacity: 0.5; width: 10px; height: 10px; }
.swiper-pagination-bullet-active { background: var(--accent-color) !important; opacity: 1; width: 25px; border-radius: 5px; }

/* Welcome Section */
.welcome-section { padding: 120px 0; background: var(--white); }
.welcome-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.welcome-img { position: relative; border-radius: 6px; overflow: visible; }
.welcome-img img { border-radius: 6px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); width: 100%; object-fit: cover; }
.experience-badge { position: absolute; bottom: -30px; right: -30px; background: var(--accent-color); color: var(--white); padding: 35px; border-radius: 6px; text-align: center; box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4); border: 2px solid rgba(255,255,255,0.2); }
.experience-badge h3 { color: var(--white); font-size: 3rem; margin-bottom: 5px; font-weight: 800; line-height: 1; }
.experience-badge p { font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85rem; line-height: 1.3; }
.welcome-text h4 { color: var(--accent-color); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; font-size: 0.95rem; font-weight: 600; }
.welcome-text h2 { font-size: 2.8rem; margin-bottom: 25px; line-height: 1.25; font-weight: 800; }
.welcome-text p { color: var(--text-light); margin-bottom: 25px; font-size: 1.05rem; }
.welcome-features { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.w-feature { display: flex; flex-direction: column; gap: 10px; }
.w-feature i { font-size: 2.2rem; color: var(--primary-color); }
.w-feature h5 { font-size: 1.1rem; color: var(--primary-color); font-weight: 700; }
.w-feature p { font-size: 0.9rem; margin-bottom: 0; color: var(--text-light); }

/* Core Values Grid */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.value-card { background: var(--white); padding: 40px 30px; border-radius: 6px; box-shadow: var(--shadow); transition: var(--transition); border-top: 4px solid transparent; }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-top-color: var(--accent-color); }
.value-icon { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 25px; }
.value-card h3 { font-size: 1.25rem; margin-bottom: 15px; font-weight: 700; }
.value-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* Product/Services Grid */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.service-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid #f1f5f9; display: flex; flex-direction: column; height: 100%; }
.service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-hover); }
.service-img { position: relative; height: 260px; overflow: hidden; background: #e2e8f0; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-icon { position: absolute; bottom: -28px; right: 30px; width: 56px; height: 56px; background: var(--primary-color); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 8px 20px rgba(0,34,68,0.25); z-index: 10; transition: var(--transition); border: 3px solid var(--white); }
.service-card:hover .service-icon { background: var(--accent-color); transform: rotateY(180deg); }
.service-content { padding: 40px 30px 35px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.service-content h3 { font-size: 1.45rem; margin-bottom: 15px; transition: var(--transition); font-weight: 700; }
.service-card:hover .service-content h3 { color: var(--accent-color); }
.service-content p { color: var(--text-light); margin-bottom: 25px; font-size: 0.95rem; line-height: 1.65; }
.read-more { font-family: var(--font-heading); font-weight: 700; color: var(--primary-color); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1.5px; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; }
.read-more i { transition: transform 0.3s ease; font-size: 0.75rem; }
.read-more:hover { color: var(--accent-color); }
.read-more:hover i { transform: translateX(5px); }

/* Specifications Tables */
.specs-table { width: 100%; border-collapse: collapse; margin: 35px 0; background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.specs-table th { background: var(--primary-color); color: var(--white); padding: 16px 24px; font-family: var(--font-heading); font-weight: 600; text-align: left; font-size: 0.95rem; }
.specs-table td { padding: 16px 24px; border-bottom: 1px solid #f1f5f9; color: var(--text-dark); font-size: 0.95rem; }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) { background: #f8fafc; }
.specs-table td strong { color: var(--primary-color); }

/* Stats Parallax */
.stats-parallax { background: linear-gradient(rgba(0,21,43,0.85), rgba(0,21,43,0.85)), url('hero_trade.png') fixed center center; background-size: cover; padding: 110px 0; color: var(--white); }
.stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item { padding: 10px; }
.stat-item i { font-size: 3.2rem; color: var(--accent-color); margin-bottom: 25px; }
.stat-item h3 { font-size: 3.8rem; color: var(--white); margin-bottom: 8px; font-weight: 800; letter-spacing: -1px; }
.stat-item p { font-family: var(--font-heading); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.85); font-weight: 600; }

/* Why Choose Us (Features List) */
.choose-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: center; }
.choose-list { display: flex; flex-direction: column; gap: 25px; }
.choose-item { display: flex; gap: 25px; background: var(--white); padding: 25px; border-radius: 6px; box-shadow: var(--shadow); transition: var(--transition); border-left: 4px solid transparent; }
.choose-item:hover { transform: translateX(8px); box-shadow: var(--shadow-hover); border-left-color: var(--accent-color); }
.choose-icon { width: 64px; height: 64px; background: #f1f5f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--accent-color); flex-shrink: 0; transition: var(--transition); }
.choose-item:hover .choose-icon { background: var(--primary-color); color: var(--white); }
.choose-text h4 { font-size: 1.25rem; margin-bottom: 8px; font-weight: 700; color: var(--primary-color); }
.choose-text p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; line-height: 1.6; }
.choose-img { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.choose-img img { width: 100%; border-radius: 6px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

/* Testimonials Section */
.testimonials-section { padding: 120px 0; background: #f8fafc; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.testimonial-card { background: var(--white); padding: 45px 35px; border-radius: 6px; box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 15px; left: 30px; font-size: 6rem; color: rgba(212, 175, 55, 0.15); font-family: sans-serif; line-height: 1; }
.testimonial-text { font-style: italic; color: var(--text-light); font-size: 1.05rem; margin-bottom: 30px; position: relative; z-index: 2; line-height: 1.7; }
.testimonial-user { display: flex; align-items: center; gap: 15px; margin-top: auto; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--primary-color); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; border: 2px solid var(--accent-color); }
.testimonial-meta h5 { font-size: 1.05rem; font-weight: 700; color: var(--primary-color); margin-bottom: 2px; }
.testimonial-meta p { font-size: 0.8rem; color: var(--accent-color); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* CTA Section */
.cta-section { background: linear-gradient(rgba(0, 21, 43, 0.9), rgba(0, 34, 68, 0.95)), url('hero_trade.png') center center; background-size: cover; padding: 100px 0; text-align: center; color: var(--white); }
.cta-section h2 { color: var(--white); font-size: 2.8rem; margin-bottom: 20px; font-weight: 800; }
.cta-section p { font-size: 1.3rem; margin-bottom: 40px; opacity: 0.9; max-width: 800px; margin-left: auto; margin-right: auto; font-weight: 300; }

/* Page Banner */
.page-banner { height: 420px; background-size: cover !important; background-position: center !important; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: var(--white); position: relative; z-index: 1; }
.page-banner::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0, 21, 43, 0.8), rgba(0, 34, 68, 0.85)); z-index: -1; }
.page-banner h1 { font-size: 3.8rem; color: var(--white); margin-bottom: 18px; text-transform: uppercase; font-weight: 800; letter-spacing: 1px; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.breadcrumbs { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; }
.breadcrumbs a { color: var(--accent-color); }
.breadcrumbs span { margin: 0 12px; opacity: 0.5; color: var(--white); }

/* Document Checklist */
.checklist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.checklist-card { background: var(--white); padding: 35px; border-radius: 6px; box-shadow: var(--shadow); border-left: 4px solid var(--primary-color); }
.checklist-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.checklist-card h4 i { color: var(--accent-color); }
.checklist-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* Custom Contact Elements */
.contact-form-wrapper { background: var(--white); padding: 50px; border-radius: 6px; box-shadow: var(--shadow); border: 1px solid #f1f5f9; }
.contact-form-wrapper h3 { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 30px; font-weight: 800; position: relative; padding-bottom: 12px; }
.contact-form-wrapper h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 3px; background: var(--accent-color); }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--primary-color); }
.form-input { padding: 16px 20px; border: 1px solid #e2e8f0; border-radius: 4px; font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition); background: #f8fafc; color: var(--text-dark); }
.form-input:focus { outline: none; border-color: var(--accent-color); background: var(--white); box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Image Gallery enhancements */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.gallery-item { position: relative; border-radius: 6px; overflow: hidden; height: 300px; box-shadow: var(--shadow); group: hover; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,34,68,0.2), rgba(0,21,43,0.9)); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; opacity: 0; transition: var(--transition); z-index: 10; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--white); font-size: 1.25rem; font-weight: 700; margin-bottom: 5px; transform: translateY(20px); transition: var(--transition); transition-delay: 0.1s; }
.gallery-overlay p { color: var(--accent-color); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; transform: translateY(20px); transition: var(--transition); transition-delay: 0.15s; }
.gallery-item:hover .gallery-overlay h4, .gallery-item:hover .gallery-overlay p { transform: translateY(0); }

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.25);
}
.float-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.float-whatsapp {
    background-color: #25D366;
}
.float-call {
    background-color: var(--accent-color);
}

/* Footer */
footer { background: #001122; color: #94a3b8; padding: 100px 0 0; font-size: 0.95rem; border-top: 5px solid var(--accent-color); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.8fr 0.8fr 1.4fr; gap: 50px; margin-bottom: 80px; }
.footer-about .logo { margin-bottom: 25px; flex-shrink: 0; }
.footer-about .logo img { height: 70px; width: 82px; flex-shrink: 0; }
.footer-about p { margin-bottom: 30px; line-height: 1.8; }
.footer-social { display: flex; gap: 15px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(255,255,255,0.03); border-radius: 4px; color: var(--white); transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); }
.footer-social a:hover { background: var(--accent-color); border-color: var(--accent-color); transform: translateY(-4px); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 1.25rem; margin-bottom: 35px; position: relative; padding-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 45px; height: 3px; background: var(--accent-color); border-radius: 1.5px; }
.footer-links li { margin-bottom: 18px; }
.footer-links a { transition: var(--transition); display: inline-flex; align-items: center; gap: 10px; color: #94a3b8; }
.footer-links a i { font-size: 0.8rem; color: var(--accent-color); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-links a:hover i { transform: translateX(4px); }
.footer-contact li { display: flex; gap: 18px; margin-bottom: 25px; align-items: flex-start; }
.footer-contact i { color: var(--accent-color); font-size: 1.3rem; margin-top: 4px; }
.footer-contact a { transition: var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { background: #000a14; padding: 30px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; }

/* Regulatory Badges Grid (Certifications page) */
.badges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; margin-top: 50px; }
.badge-card { background: var(--white); padding: 45px 35px; border-radius: 6px; box-shadow: var(--shadow); border: 1px solid #f1f5f9; text-align: center; transition: var(--transition); }
.badge-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.badge-card-icon { width: 90px; height: 90px; background: #f8fafc; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; font-size: 2.5rem; color: var(--accent-color); border: 2px solid #f1f5f9; transition: var(--transition); }
.badge-card:hover .badge-card-icon { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }
.badge-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 15px; color: var(--primary-color); }
.badge-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .service-grid, .testimonials-grid, .gallery-grid, .badges-grid { grid-template-columns: repeat(2, 1fr); }
    .welcome-grid, .choose-grid { grid-template-columns: 1fr; gap: 50px; }
    .experience-badge { bottom: 20px; right: 20px; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .checklist-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .logo img { height: 65px; width: 76px; }
    .nav-links { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: var(--white); flex-direction: column; gap: 0; box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-top: 1px solid #eee; }
    .nav-links > li { width: 100%; text-align: center; padding: 0; }
    .nav-links > li > a { display: block; padding: 15px 0; border-bottom: 1px solid #f1f5f9; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; width: 100%; display: none; background: #f8fafc; border-top: none; }
    .nav-links li:hover .dropdown { display: block; }
    .hamburger { display: block; }
    .hero-slider { height: 70vh; }
    .slide-content h1 { font-size: 2.8rem; }
    .slide-content p { font-size: 1.1rem; }
    .service-grid, .testimonials-grid, .gallery-grid, .stats-container, .footer-grid, .badges-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 24px; }
    .contact-form-wrapper { padding: 30px; }
    .floating-buttons { bottom: 20px; right: 20px; gap: 10px; }
    .float-btn { width: 50px; height: 50px; font-size: 1.5rem; }
}
