/* ==========================================
   ING ASSOCIATES - MODERN SPA DESIGN
   Stunning Single Page Application
   ========================================== */

/* Custom Fonts & Variables */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@600;700;800&display=swap');

:root {
    --primary: #0b3743;
    --accent: #0b3743;
    --gold: #a8892f;
    --dark: #062a33;
    --light: #f8f9fa;
    --gray: #6c757d;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: #000;
}

/* Justify only long-form paragraph text, not cards or short items */
.about-text p,
.service-description,
.service-intro p,
.service-hero p,
.service-feature-card p,
.service-cta p,
.contact-info-card p,
.footer-about p {
    text-align: justify;
    text-align-last: left;
}

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

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links a {
    color: var(--primary);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--gold);
}

.navbar.scrolled .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .dropdown-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .mobile-toggle {
    color: var(--primary);
}

.navbar.scrolled .container {
    padding: 0 40px;
}

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

.navbar .logo {
    flex-shrink: 0;
    margin-right: auto;
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 70px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.navbar .logo .logo-white { display: block; }
.navbar .logo .logo-dark { display: none; }

.navbar.scrolled .logo .logo-white { display: none; }
.navbar.scrolled .logo .logo-dark { display: block; }
.navbar.scrolled .logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

.nav-links li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links li.has-dropdown > a::after {
    display: none;
}

.nav-links li.has-dropdown > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-links li.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 55, 67, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    list-style: none;
    z-index: 1001;
}

.nav-links li.has-dropdown {
    padding-bottom: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(11, 55, 67, 0.98);
}

.nav-links li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-left: 30px;
}

.dropdown-menu li a::after {
    display: none;
}

/* ==========================================
   HERO SECTION - FULL SCREEN
   ========================================== */

.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.hero-slide.active {
    display: flex;
    opacity: 1;
}

.hero-section::before {
    display: none;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #0b3743;
    line-height: 1.2;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    padding: 0;
    border-radius: 0;
    background: none;
    display: inline-block;
}

.hero-subtitle,
.hero-description,
.hero-buttons {
    display: none;
}

.gradient-text {
    background: none;
    color: var(--primary);
    -webkit-text-fill-color: inherit;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(11, 55, 67, 0.9);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-left {
    left: 30px;
}

.hero-arrow-right {
    right: 30px;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 30px rgba(11, 55, 67, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #094955;
    box-shadow: 0 15px 40px rgba(11, 55, 67, 0.5);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 5;
}

.scroll-indicator i {
    color: var(--gold);
    font-size: 32px;
}

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

/* ==========================================
   TRUST STATS SECTION
   ========================================== */

.stats-section {
    background: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
}

.stats-section::before {
    display: none;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    transition: none;
}

.stat-card:hover {
    transform: none;
    background: #f8f9fa;
    box-shadow: none;
}

.stat-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.stat-card {
    text-align: center;
}

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

.nav-links {
    text-align: left;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: none;
    position: relative;
    overflow: visible;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    transform: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.service-image {
    display: none;
}

.service-content {
    padding: 0;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: none;
}

.service-card:hover .service-icon {
    transform: none;
}

.service-icon i {
    font-size: 36px;
    color: var(--accent);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 14px;
}

.service-features li i {
    color: var(--accent);
    margin-right: 10px;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 15px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    padding: 70px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    display: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: none;
    text-align: left;
}

.feature-item:hover {
    background: #fff;
    transform: none;
}

.feature-item i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.feature-item-full {
    grid-column: 1 / -1;
}

/* ==========================================
   WHY CHOOSE / ADVANTAGES SECTION
   ========================================== */

.why-choose-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary), #094955);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.advantage-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: left;
}

.advantage-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
    text-align: left;
}

.advantage-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    font-size: 15px;
    text-align: left;
}

.advantage-icon {
    width: 55px;
    height: 55px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon i {
    font-size: 24px;
    color: var(--primary);
}

/* ==========================================
   CERTIFICATIONS SECTION
   ========================================== */

.certifications-section {
    padding: 60px 0;
    background: #fff;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.certification-card {
    text-align: center;
    padding: 35px 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.certification-card .licence-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 18px;
}

.certification-card h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 0;
}

/* ==========================================
   RFQ SECTION
   ========================================== */

.rfq-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.rfq-form-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
}

.rfq-form {
    background: linear-gradient(135deg, rgba(11, 55, 67, 0.03), rgba(11, 55, 67, 0.06));
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(11, 55, 67, 0.1);
}

.rfq-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rfq-submit {
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    font-size: 16px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    padding: 40px 0 70px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-card,
.contact-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #e8e8e8;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
}

.contact-info-top {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-info-top .contact-item {
    flex: 1;
    min-width: 150px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    text-align: center;
}

.contact-info-top .contact-item h4 {
    font-size: 11px;
    margin-bottom: 5px;
}

.contact-info-top .contact-item p {
    font-size: 13px;
    margin: 0;
}

.contact-map-wrapper {
    flex: 1;
    min-height: 250px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent);
}

.contact-info h2 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-info p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:hover {
    background: transparent;
    color: inherit;
    transform: none;
}

.contact-icon {
    display: none;
}

.contact-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: #5a6c7d;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.contact-item a {
    color: #5a6c7d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: none;
}

.form-group label {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: none;
}

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

.submit-btn {
    width: 100%;
    padding: 18px 45px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(11, 55, 67, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    background: #094955;
    box-shadow: 0 15px 40px rgba(11, 55, 67, 0.5);
}

/* ==========================================
   MAP SECTION
   ========================================== */

.map-section {
    height: 500px;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--dark);
    color: #fff;
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-about h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links span,
.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.footer-links h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-links ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

.fade-in {
    animation: fadeInUp 1s ease;
}

/* ==========================================
   SERVICE TABS - SPA INLINE SERVICES
   ========================================== */

.service-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
}

.service-tabs::-webkit-scrollbar {
    display: none;
}

.service-tab {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.service-tab:hover {
    border-color: var(--gold);
    background: rgba(168, 137, 47, 0.05);
}

.service-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.service-tab i {
    font-size: 16px;
}

.service-panel {
    display: none;
    animation: fadeInPanel 0.4s ease;
}

.service-panel.active {
    display: block;
}

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

.svc-panel-inner {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.svc-panel-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #094955);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-panel-icon i {
    font-size: 28px;
    color: var(--gold);
}

.svc-panel-content h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.svc-panel-content > p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
    text-align-last: left;
}

.svc-panel-content h4 {
    color: var(--primary);
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 700;
}

.svc-cap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.svc-cap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 12px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}

.svc-cap i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 14px;
}

.svc-footer {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    text-align: justify;
    text-align-last: left;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */

.scroll-fade {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-fade.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   SERVICE PAGE STYLES
   ========================================== */

.service-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary), #094955);
    position: relative;
    overflow: hidden;
}

.service-hero::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"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-hero h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.service-content {
    padding: 80px 0;
    background: #fff;
}

.service-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-intro h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

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

.service-feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-feature-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-feature-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

.service-feature-card ul {
    list-style: none;
    margin-top: 15px;
}

.service-feature-card ul li {
    padding: 8px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature-card ul li i {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 0;
}

.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), #094955);
    text-align: center;
}

.service-cta h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta .btn {
    background: #fff;
    color: var(--primary);
}

.service-cta .btn:hover {
    background: var(--gold);
    color: var(--primary);
}

/* Back to home link for service pages */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #fff;
}
/* ==========================================
   RESPONSIVE
   ========================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .navbar .container {
        padding: 0 30px;
    }

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

    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 28px;
    }

    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .svc-cap-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .container {
        padding: 0 25px;
    }

    .navbar .container {
        padding: 0 25px;
    }

    .hero-title {
        font-size: 46px;
    }

    .section-title {
        font-size: 26px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h3,
    .about-content > div > h3 {
        font-size: 24px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-arrow-left {
        left: 15px;
    }

    .hero-arrow-right {
        right: 15px;
    }

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

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .rfq-form {
        padding: 30px;
    }

    .svc-panel-inner {
        grid-template-columns: 70px 1fr;
        gap: 25px;
        padding: 30px;
    }

    .svc-panel-content h3 {
        font-size: 24px;
    }

    .svc-cap-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar .container {
        padding: 0 20px;
    }

    .navbar .logo img {
        height: 48px;
    }

    .navbar.scrolled .logo img {
        height: 38px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(11, 55, 67, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links.active a {
        color: #fff !important;
    }

    .nav-links.active a:hover {
        color: var(--gold) !important;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-section {
        height: 100vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .hero-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .hero-arrow-left {
        left: 10px;
    }

    .hero-arrow-right {
        right: 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .services-section {
        padding: 50px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Service Tabs Mobile */
    .service-tabs {
        gap: 8px;
        justify-content: flex-start;
    }

    .service-tab {
        padding: 10px 16px;
        font-size: 12px;
    }

    /* ---- SERVICE PANEL: stack on mobile ---- */
    .svc-panel-inner {
        grid-template-columns: 1fr;
        padding: 25px 20px;
        gap: 15px;
    }

    .svc-panel-icon {
        width: 55px;
        height: 55px;
    }

    .svc-panel-icon i {
        font-size: 22px;
    }

    .svc-panel-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .svc-panel-content > p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .svc-panel-content h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .svc-cap-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .svc-cap {
        font-size: 14px;
        padding: 10px 12px;
        gap: 8px;
    }

    .svc-cap i {
        font-size: 13px;
        margin-top: 2px;
    }

    .svc-footer {
        font-size: 14px;
        line-height: 1.7;
        padding-top: 12px;
    }

    /* ---- ABOUT ---- */
    .about-section {
        padding: 50px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h3,
    .about-content > div > h3 {
        font-size: 22px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item i {
        font-size: 28px;
    }

    .vision-mission-box {
        padding: 20px;
    }

    /* ---- STATS ---- */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* ---- ADVANTAGES ---- */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .advantage-card {
        padding: 25px;
    }

    .advantage-card h3 {
        font-size: 18px;
    }

    .advantage-card p {
        font-size: 14px;
    }

    .why-choose-section {
        padding: 50px 0;
    }

    /* ---- CERTIFICATIONS ---- */
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .certifications-section {
        padding: 50px 0;
    }

    .certification-card {
        padding: 25px 20px;
    }

    /* ---- RFQ ---- */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rfq-form-wrap {
        padding: 0;
    }

    .rfq-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rfq-form {
        padding: 25px 20px;
    }

    .rfq-section {
        padding: 50px 0;
    }

    .rfq-submit {
        margin-top: 15px;
        padding: 14px;
        font-size: 14px;
    }

    .btn {
        padding: 15px 35px;
        font-size: 14px;
    }

    .btn-full {
        padding: 15px 20px;
    }

    /* ---- CONTACT ---- */
    .contact-section {
        padding: 40px 0 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-top {
        flex-direction: column;
        gap: 15px;
    }

    .contact-info-top .contact-item {
        min-width: 100%;
    }

    .contact-map-wrapper {
        min-height: 200px;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    /* ---- FOOTER ---- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-about,
    .footer-links {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* ---- SERVICE PAGES ---- */
    .service-hero {
        padding: 140px 0 60px;
    }

    .service-hero h1 {
        font-size: 32px;
    }

    .service-hero p {
        font-size: 16px;
    }

    .service-content {
        padding: 50px 0;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .service-feature-card {
        padding: 30px 20px;
    }

    .service-feature-card h3 {
        font-size: 18px;
    }

    .service-cta {
        padding: 50px 0;
    }

    .service-cta h2 {
        font-size: 28px;
    }

    /* Dropdown for mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.2);
        min-width: 100%;
        padding: 10px 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-links li.has-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 40px;
    }

    /* WhatsApp CTA */
    .whatsapp-cta {
        text-align: center;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .navbar .container {
        padding: 0 16px;
    }

    .navbar .logo img {
        height: 42px;
    }

    .navbar.scrolled .logo img {
        height: 34px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* Stats */
    .stats-section {
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card {
        padding: 20px 10px;
        border-radius: 12px;
    }

    .stat-icon {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* About */
    .about-section {
        padding: 40px 0;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-text h3 {
        font-size: 20px;
    }

    .core-values-heading {
        font-size: 20px;
    }

    .feature-item {
        padding: 18px;
    }

    .feature-item i {
        font-size: 24px;
    }

    .feature-item h4 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13px;
    }

    /* Services */
    .services-section {
        padding: 40px 0;
    }

    .service-tab {
        padding: 8px 14px;
        font-size: 11px;
        gap: 5px;
    }

    .service-tab i {
        font-size: 11px;
    }

    .svc-panel-inner {
        padding: 18px 15px;
        border-radius: 14px;
        gap: 12px;
    }

    .svc-panel-icon {
        width: 48px;
        height: 48px;
    }

    .svc-panel-icon i {
        font-size: 20px;
    }

    .svc-panel-content h3 {
        font-size: 19px;
    }

    .svc-panel-content > p {
        font-size: 13px;
    }

    .svc-panel-content h4 {
        font-size: 14px;
    }

    .svc-cap {
        font-size: 13px;
        padding: 8px 10px;
        border-radius: 6px;
    }

    .svc-cap i {
        font-size: 12px;
    }

    .svc-footer {
        font-size: 13px;
    }

    /* Advantages */
    .why-choose-section {
        padding: 40px 0;
    }

    .advantage-card {
        padding: 20px;
        border-radius: 12px;
    }

    .advantage-icon,
    .adv-icon {
        width: 45px;
        height: 45px;
    }

    .advantage-icon i,
    .adv-icon i {
        font-size: 20px;
    }

    .advantage-card h3 {
        font-size: 17px;
    }

    .advantage-card p {
        font-size: 13px;
    }

    /* Certifications */
    .certifications-section {
        padding: 40px 0;
    }

    .certification-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .certification-card .licence-logo {
        width: 60px;
        height: 60px;
    }

    .certification-card h4 {
        font-size: 14px;
    }

    /* RFQ */
    .rfq-section {
        padding: 40px 0;
    }

    .rfq-form {
        padding: 20px 15px;
    }

    .rfq-form-wrapper {
        margin-top: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 16px;
        font-size: 14px;
    }

    .btn {
        padding: 13px 28px;
        font-size: 13px;
    }

    .btn-full {
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Contact */
    .contact-info-card,
    .contact-form-card {
        padding: 25px 18px;
    }

    .contact-info-card h3,
    .contact-form-card h3 {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-about h3 {
        font-size: 20px;
    }

    .footer-links h4 {
        font-size: 16px;
    }

    .footer-about p,
    .footer-links ul li {
        font-size: 14px;
    }

    /* Service Pages */
    .service-hero {
        padding: 120px 0 50px;
    }

    .service-hero h1 {
        font-size: 26px;
    }

    .service-hero p {
        font-size: 14px;
    }

    .service-feature-card i {
        font-size: 32px;
    }

    .service-feature-card h3 {
        font-size: 16px;
    }

    .service-cta h2 {
        font-size: 24px;
    }

    .service-cta p {
        font-size: 14px;
    }

    .industries-card {
        padding: 30px 20px;
    }

    .industries-card i {
        font-size: 36px;
    }

    .industries-card h4 {
        font-size: 18px;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .container {
        padding: 0 12px;
    }

    .navbar .container {
        padding: 0 12px;
    }

    .navbar .logo img {
        height: 36px;
    }

    .navbar.scrolled .logo img {
        height: 30px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .stat-card {
        padding: 18px 8px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-icon {
        font-size: 20px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 12px;
    }

    .btn-full {
        padding: 13px 16px;
        font-size: 13px;
    }

    /* Services extra small */
    .service-tab {
        padding: 7px 12px;
        font-size: 11px;
        gap: 4px;
    }

    .service-tab i {
        font-size: 11px;
    }

    .svc-panel-inner {
        padding: 15px 12px;
        border-radius: 12px;
    }

    .svc-panel-icon {
        width: 42px;
        height: 42px;
    }

    .svc-panel-icon i {
        font-size: 18px;
    }

    .svc-panel-content h3 {
        font-size: 17px;
    }

    .svc-panel-content > p {
        font-size: 12.5px;
    }

    .svc-panel-content h4 {
        font-size: 13px;
    }

    .svc-cap {
        font-size: 12px;
        padding: 7px 8px;
    }

    .svc-footer {
        font-size: 12px;
    }

    /* Other sections */
    .advantage-card {
        padding: 18px 15px;
    }

    .advantage-card h3 {
        font-size: 16px;
    }

    .advantage-card p {
        font-size: 12px;
    }

    .certification-card {
        padding: 18px 12px;
    }

    .rfq-form {
        padding: 15px 12px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 20px 14px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item i {
        font-size: 22px;
    }

    .feature-item h4 {
        font-size: 15px;
    }

    .about-text p {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 13px;
    }
}
