/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2E86AB;
    --secondary-color: #2c3e50;
    --accent-color: #5CA4C7;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f5f8fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: 120px;
    animation: logoFloat 2s ease-in-out infinite;
    margin-bottom: 20px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loader-text {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Header & Navigation ===== */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.contact-info {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.contact-info i {
    color: var(--primary-color);
}

.contact-info .separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo-text h1 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.logo .tagline {
    font-size: 11px;
    color: var(--text-light);
    margin: 3px 0 0 0;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.cta-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #1e6b8a;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: 0.3s;
}

/* ===== Sliding Contact Buttons (GEAPL Style) ===== */
.floating-contact {
    position: fixed;
    right: -160px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floating-btn {
    width: 220px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--white);
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
    border-radius: 30px 0 0 30px;
    padding: 0 15px 0 10px;
    text-align: left;
}

.floating-btn .icon-circle {
    position: absolute;
    left: 7px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s;
}

.floating-btn .btn-text {
    margin-left: 45px;
}

.floating-btn:hover {
    transform: translateX(-165px);
    box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.25);
}

.floating-btn:hover .icon-circle {
    transform: rotate(360deg) scale(1.1);
}

/* Individual button styles */
.floating-btn.enquiry {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
}

.floating-btn.enquiry .icon-circle {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.floating-btn.enquiry:hover .icon-circle {
    background: var(--white);
    color: #e74c3c;
}

.floating-btn.email {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: var(--white);
}

.floating-btn.email .icon-circle {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.floating-btn.email:hover .icon-circle {
    background: var(--white);
    color: #3498db;
}

.floating-btn.phone {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: var(--white);
}

.floating-btn.phone .icon-circle {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.floating-btn.phone:hover .icon-circle {
    background: var(--white);
    color: #27ae60;
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
    color: var(--white);
}

.floating-btn.whatsapp .icon-circle {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.floating-btn.whatsapp:hover .icon-circle {
    background: var(--white);
    color: #25d366;
    animation: wobble 0.5s;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg) scale(1.1); }
    25% { transform: rotate(-15deg) scale(1.15); }
    75% { transform: rotate(15deg) scale(1.15); }
}

/* ===== Hero Section with Background Slider ===== */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-logo-slide {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    animation: logoHeroPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(46, 134, 171, 0.3));
}

@keyframes logoHeroPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.88), rgba(92, 164, 199, 0.85));
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.8s;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    animation: fadeInUp 1.2s;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    animation: fadeInUp 1.4s;
}

.btn {
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #1e6b8a;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    font-size: 40px;
    color: var(--white);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 20px;
}

/* ===== Quick Contact Banner ===== */
.quick-contact-banner {
    background: var(--white);
    padding: 0;
    margin: -40px 0 0 0;
    position: relative;
    z-index: 100;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 25px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.contact-action:hover::before {
    transform: scaleX(1);
}

.contact-action:hover {
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.05), rgba(92, 164, 199, 0.05));
    transform: translateY(-5px);
}

.contact-action.whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.03));
}

.contact-action.whatsapp .action-icon {
    background: linear-gradient(135deg, #25d366, #128C7E);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.action-icon i {
    font-size: 26px;
    color: var(--white);
}

.contact-action:hover .action-icon {
    transform: scale(1.1) rotate(5deg);
}

.action-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.action-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ===== Services Section ===== */
.services {
    padding: 50px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 30px rgba(46, 134, 171, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 40px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card ul li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== Equipment Section ===== */
.equipment {
    padding: 80px 0;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.equipment-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.equipment-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.equipment-image {
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.equipment-image i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.equipment-card:hover .equipment-image i {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.1);
}

.equipment-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    padding: 20px 25px 10px;
}

.equipment-card > p {
    color: var(--text-light);
    padding: 0 25px;
    margin-bottom: 15px;
}

.equipment-card ul {
    list-style: none;
    padding: 0 25px;
    margin-bottom: 20px;
}

.equipment-card ul li {
    padding: 6px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.equipment-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.equipment-btn {
    display: block;
    margin: 20px 25px 25px;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.equipment-btn:hover {
    background: #1e6b8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 134, 171, 0.3);
}

/* ===== Why Choose Us ===== */
.why-choose {
    padding: 50px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(46, 134, 171, 0.15);
    border-color: var(--primary-color);
}

.feature-box i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text-light);
}

/* ===== About Section ===== */
.about {
    padding: 50px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-dark);
    font-weight: 600;
}

.certifications {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 5px;
}

.about-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Industries Section ===== */
.industries {
    padding: 50px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.industries .section-header h2 {
    color: var(--white);
}

.industries .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.industry-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.industry-item i {
    font-size: 50px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.industry-item h4 {
    font-size: 18px;
}

/* ===== Quote Section ===== */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.95), rgba(92, 164, 199, 0.9));
}

.quote-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.quote-box h2 {
    font-size: 32px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 10px;
}

.quote-box > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border 0.3s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quote-form textarea {
    resize: vertical;
}

.quote-form button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.quote-form button:hover {
    background: #1e6b8a;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

/* ===== Blog Section ===== */
.blog,
.blog-listing {
    padding: 50px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.blog-content h3 a {
    color: var(--secondary-color);
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 12px;
}

.read-more i {
    font-size: 12px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.info-box {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
}

.info-box i {
    font-size: 30px;
    color: var(--primary-color);
}

.info-box h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.info-box p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: #1e6b8a;
}

/* ===== Footer ===== */
.footer {
    background: #f8f9fa;
    color: var(--text-dark);
    padding: 35px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.footer-column p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 6px;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.footer-column ul li a {
    color: var(--text-light);
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}
.gstin {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.social-links {
    margin-top: 20px;
}

.social-links h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.social-icons a:hover {
    transform: scale(1.15) rotate(5deg);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover .fa-facebook-f {
    color: #1877f2;
}

.social-icons a:hover .fa-instagram {
    color: #E4405F;
}

.social-icons a:hover .fa-linkedin-in {
    color: #0077b5;
}

.social-icons a:hover .fa-youtube {
    color: #FF0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 13px;
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #1e6b8a;
    transform: translateY(-5px);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-logo {
        width: 250px;
        height: 250px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-grid,
    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .quote-form .form-row {
        grid-template-columns: 1fr;
    }

    .top-bar {
        font-size: 11px;
        padding: 6px 0;
    }
    
    .contact-info {
        gap: 10px;
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .contact-info span {
        font-size: 11px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-banner {
        margin-top: 0;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: #e0e0e0;
    }
    
    .contact-action {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .action-icon {
        width: 50px;
        height: 50px;
    }
    
    .action-icon i {
        font-size: 22px;
    }
    
    .action-text h4 {
        font-size: 15px;
    }
    
    .action-text p {
        font-size: 11px;
    }
    
    /* Floating sidebar responsive */
    .floating-contact {
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
    }
    
    .floating-btn {
        width: 25%;
        height: 50px;
        border-radius: 0 !important;
        border: none;
        border-right: 1px solid rgba(255,255,255,0.2);
    }
    
    .floating-btn:last-child {
        border-right: none;
    }
    
    .floating-btn .btn-text {
        display: none;
    }
    
    .floating-btn i {
        font-size: 20px;
    }
}
