        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: red;
            --nfdgvkn: #ff0000;
            --dark-orange: #ff0000;
            --dark-gold: #ff0000;
            --premium-black: #000000;
            --steel-gray: #000000;
            --light-gray: #F8FAFC;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #ff0000 0%, #ff0000 100%);
            --gradient-secondary: linear-gradient(135deg, #000000 0%, #000000 100%);
            --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --shadow-elevation: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--premium-black);
            background-color: var(--white);
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
            font-display: swap;
        }

        .font-primary {
            font-family: 'Inter', sans-serif;
        }

        .font-secondary {
            font-family: 'Poppins', sans-serif;
        }

        /* Enhanced Responsive Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            height: auto;
            min-height: 70px;
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
            width: 100%;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-elevation);
            border-bottom-color: rgba(255, 0, 0, 0.2);
        }

        .navbar-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--premium-black);
            flex-shrink: 0;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-elevation);
            flex-shrink: 0;
        }

        .logo-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .logo-text h1 {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 0.1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }

        .logo-text p {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--steel-gray);
            font-weight: 500;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--premium-black);
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5px 0;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary-orange);
            transform: scale(1.13);
        }

        .cta-button {
            background: var(--gradient-primary);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-elevation);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-premium);
        }

        /* Enhanced Mobile Menu */
        .mobile-menu-button {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: none;
            border: none;
            z-index: 1001;
            flex-shrink: 0;
        }

        .mobile-menu-button span {
            width: 25px;
            height: 3px;
            background: black;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 350px;
            height: 100vh;
            background: white;
            z-index: 999;
            transition: right 0.3s ease;
            padding: 5rem 2rem 2rem;
            box-shadow: var(--shadow-premium);
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-backdrop.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-link {
            display: block;
            padding: 1rem 0;
            color: var(--premium-black);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-bottom: 1px solid rgba(255, 0, 0, 0.1);
            transition: color 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: var(--primary-orange);
        }

        /* Enhanced Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(3, 0, 43, 0.466) 0%, rgba(0, 0, 0, 0.541) 100%), url('Background.webp') center/cover no-repeat;
            display: flex;
            align-items: center;
            padding: 12vh 0 6vh;
            position: relative;
            overflow: hidden;
            width: 100%;
            min-height: 100vh;
            margin-top: 70px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
            width: 100%;
        }

        .hero-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 0.75rem;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 100%;
            text-align: center;
            margin: 0 auto;
            color: white;
            padding: 0 0.5rem;
        }

        .hero-title {
            font-size: clamp(1.3rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1rem;
            margin-top: 2rem;
            font-family: 'Poppins', sans-serif;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.178);
            word-break: break-word;
        }

        .hero-title .gradient-text {
            color: #ff0000;
            text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.178);
            display: inline-block;
        }

        .hero-subtitle {
            font-size: clamp(0.8rem, 2.5vw, 1.25rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            font-weight: 400;
            line-height: 1.5;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            padding: 0 0.5rem;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            padding: 0 0.5rem;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            padding: 0.75rem 1.25rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(0.75rem, 2.5vw, 0.95rem);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-elevation);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            border: none;
            cursor: pointer;
            white-space: normal;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-premium);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.75rem 1.25rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(0.75rem, 2.5vw, 0.95rem);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-elevation);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            white-space: normal;
        }

        .btn-secondary:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-premium);
            border-color: var(--primary-orange);
        }

        /* Enhanced Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
            gap: 0.75rem;
            margin-top: 1.5rem;
            width: 95%;
            margin: 1.5rem auto 0;
        }

        .stat-card {
            text-align: center;
            padding: 0.75rem 0.5rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            box-shadow: var(--shadow-elevation);
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
            width: 100%;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: clamp(1.1rem, 3vw, 2.5rem);
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.2rem;
            font-family: 'Poppins', sans-serif;
        }

        .stat-label {
            color: var(--steel-gray);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            font-size: clamp(0.6rem, 1.8vw, 0.8rem);
            line-height: 1.2;
        }

        /* Enhanced Section Styling */
        .section {
            padding: 4rem 0;
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .section-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
            color: var(--premium-black);
        }

        .section-titlel {
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
            color: white;
        }

        .section-subtitle {
            font-size: clamp(0.9rem, 2vw, 1.2rem);
            color: var(--steel-gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            margin: 1.5rem auto;
            border-radius: 2px;
        }

        /* Enhanced Responsive Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            width: 100%;
        }

        .card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-elevation);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-premium);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-elevation);
        }

        .card-icon i {
            font-size: 1.75rem;
            color: white;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--premium-black);
        }

        .card-description {
            color: var(--steel-gray);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Enhanced Service Cards */
        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-elevation);
            transition: all 0.3s ease;
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-premium);
        }

        .service-card-image {
            width: 100%;
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .service-card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 0, 0, 0.24), rgba(255, 0, 0, 0.219));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-card-image::before {
            opacity: 1;
        }

        .service-card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1 1 auto;
        }

        /* Service card actions (Book Now) */
        .service-card-actions {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            padding-top: 15px;
            margin-top: auto; /* push actions to bottom */
            justify-content: right;
        }

        .service-cta {
            background: var(--gradient-primary);
            color: white;
            padding: 0.6rem 1rem;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: var(--shadow-elevation);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .service-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-premium);
        }

        .service-cta.secondary {
            background: transparent;
            color: var(--premium-black);
            border: 2px solid rgba(15, 23, 42, 0.06);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85));
        }

        .service-card-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .service-card-icon i {
            font-size: 1.25rem;
            color: var(--primary-orange);
        }

        /* Enhanced Dark Section */
        .section-dark {
            background: var(--gradient-secondary);
            color: white;
        }

        .section-dark .section-title {
            color: white;
        }

        .section-dark .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .section-dark .card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-dark .card-title {
            color: white;
        }

        .section-dark .card-description {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Enhanced Process Steps */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            position: relative;
            width: 100%;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-number {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.25rem;
            font-weight: 900;
            color: white;
            box-shadow: var(--shadow-elevation);
        }

        .process-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .process-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Enhanced Service Areas */
        .service-areas {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.25rem;
            width: 100%;
        }

        .service-area {
            background: white;
            border-radius: 15px;
            padding: 1.5rem 1rem;
            text-align: center;
            box-shadow: var(--shadow-elevation);
            transition: all 0.3s ease;
            width: 100%;
        }

        .service-area:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-premium);
        }

        .service-area i {
            font-size: 2rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .service-area h3 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--premium-black);
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .service-area p {
            color: var(--steel-gray);
            font-size: clamp(0.75rem, 1.5vw, 0.85rem);
        }

        /* Enhanced Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            box-shadow: var(--shadow-elevation);
            border-left: 4px solid var(--primary-gold);
            width: 100%;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            right: 20px;
            font-size: 4rem;
            color: var(--primary-orange);
            opacity: 0.2;
            font-family: serif;
        }

        .testimonial-stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.25rem;
        }

        .testimonial-stars i {
            color: #700000;
            font-size: 1.1rem;
        }

        .testimonial-text {
            color: var(--steel-gray);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-style: italic;
            font-size: 0.95rem;
        }

        .testimonial-author {
            font-weight: 700;
            font-size: 1rem;
            color: var(--premium-black);
            margin-bottom: 0.25rem;
        }

        .testimonial-role {
            color: var(--primary-orange);
            font-weight: 500;
            font-size: 0.9rem;
        }

        /* NEW: Tanker Capacity Section Styles */
        .tanker-section {
            background: linear-gradient(135deg, var(--premium-black) 0%, var(--steel-gray) 100%);
            position: relative;
            overflow: hidden;
        }

        .tanker-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,176,0,0.08)"/></svg>');
            background-size: 60px 60px;
            animation: float 25s ease-in-out infinite;
            opacity: 0.3;
        }

        .tanker-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            width: 100%;
        }

        .tanker-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 3rem 2rem;
            text-align: center;
            border: 1px solid rgba(255, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .tanker-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .tanker-card:hover::before {
            opacity: 0.1;
        }

        .tanker-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(255, 0, 0, 0.3);
            border-color: var(--primary-orange);
        }

        .tanker-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .tanker-card:hover .tanker-icon {
            transform: scale(1.1);
            box-shadow: 0 20px 60px rgba(255, 0, 0, 0.6);
        }

        .tanker-icon i {
            font-size: 2.5rem;
            color: white;
        }

        .tanker-capacity {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            color: white;
            margin-bottom: 0.5rem;
            font-family: 'Poppins', sans-serif;
            position: relative;
            z-index: 2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 0.9;
        }

        .tanker-unit {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            color: var(--primary-orange);
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            position: relative;
            z-index: 2;
        }

        .tanker-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            line-height: 1.6;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .tanker-features {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .tanker-features li {
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }

        .tanker-features li i {
            color: var(--primary-orange);
            margin-right: 0.75rem;
            font-size: 0.9rem;
        }

        .tanker-cta {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            margin-top: 1rem;
            position: relative;
            z-index: 2;
        }

        .tanker-cta:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
            border-color: var(--primary-orange);
        }

        /* Enhanced Emergency Section */
        .emergency-section {
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .emergency-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: 50px 50px;
            animation: float 20s ease-in-out infinite;
            opacity: 0.5;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) translateX(0px);
            }

            50% {
                transform: translateY(-20px) translateX(10px);
            }
        }

        .emergency-content {
            position: relative;
            z-index: 2;
        }

        .emergency-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .emergency-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            margin-bottom: 3rem;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .emergency-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            width: 100%;
        }

        .emergency-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 2.5rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .emergency-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .emergency-card:hover::before {
            transform: translateX(0);
        }

        .emergency-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .emergency-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .emergency-card-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .emergency-description {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            font-size: 1rem;
            position: relative;
            z-index: 2;
        }

        .emergency-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .emergency-stat {
            text-align: center;
        }

        .emergency-stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            color: white;
        }

        .emergency-stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .emergency-button {
            background: linear-gradient(45deg, #ffffff, #f0f0f0);
            color: var(--primary-orange);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: var(--shadow-premium);
            transition: all 0.3s ease;
            margin-top: 2rem;
            position: relative;
            z-index: 2;
        }

        .emergency-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        /* Enhanced Leadership Section */
        .leadership-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .leadership-container {
            position: relative;
            z-index: 2;
        }

        .leadership-card {
            background: white;
            border-radius: 30px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: var(--shadow-premium);
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .leadership-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-primary);
        }

        .leader-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
        }

        .leader-avatar {
            width: 140px;
            height: 140px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-elevation);
            position: relative;
        }

        .leader-avatar::after {
            content: '';
            position: absolute;
            inset: -10px;
            border-radius: 50%;
            border: 3px solid transparent;
            background: var(--gradient-primary);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: exclude;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            to {
                transform: rotate(360deg);
            }
        }

        .leader-avatar i {
            font-size: 4rem;
            color: white;
        }

        .leader-name {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .leader-title {
            color: var(--primary-orange);
            font-weight: 600;
            font-size: clamp(1rem, 2vw, 1.2rem);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
        }

        .leader-description {
            color: var(--steel-gray);
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            line-height: 1.8;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .leader-contacts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            width: 100%;
        }

        .leader-contact {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: all 0.3s ease;
            padding: 1.2rem 1.5rem;
            border-radius: 20px;
            background: rgba(255, 122, 0, 0.05);
            border: 2px solid rgba(255, 122, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .leader-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: left 0.3s ease;
            z-index: 0;
        }

        .leader-contact:hover::before {
            left: 0;
        }

        .leader-contact:hover {
            color: white;
            border-color: var(--primary-orange);
            transform: translateY(-5px);
            box-shadow: var(--shadow-elevation);
        }

        .leader-contact i {
            margin-right: 0.75rem;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }

        .leader-contact span {
            position: relative;
            z-index: 1;
        }

        /* Professional Contact Section */
        .contact-section-new {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
            padding: 6rem 0;
        }

        .contact-section-new::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="1" fill="rgba(255,122,0,0.05)"/></svg>');
            background-size: 40px 40px;
            animation: float 25s ease-in-out infinite;
            opacity: 0.7;
        }

        .contact-main-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
            width: 100%;
        }

        /* Professional Contact Form */
        .professional-form-container {
            background: white;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: var(--shadow-premium);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .professional-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: var(--gradient-primary);
            border-radius: 30px 30px 0 0;
        }

        .professional-form-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--premium-black);
            text-align: center;
            font-family: 'Poppins', sans-serif;
        }

        .professional-form-subtitle {
            color: var(--steel-gray);
            text-align: center;
            margin-bottom: 2rem;
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            line-height: 1.6;
        }

        .professional-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group-new {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .form-label {
            font-weight: 600;
            color: var(--premium-black);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .form-label .required {
            color: var(--primary-orange);
            font-size: 1.2rem;
        }

        .form-input-new,
        .form-select-new,
        .form-textarea-new {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border: 2px solid #E2E8F0;
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
            color: var(--premium-black);
            font-family: 'Inter', sans-serif;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .form-input-new:focus,
        .form-select-new:focus,
        .form-textarea-new:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .form-textarea-new {
            resize: vertical;
            min-height: 140px;
            font-family: 'Inter', sans-serif;
        }

        .form-select-new {
            cursor: pointer;
        }

        .submit-button {
            background: var(--gradient-primary);
            color: white;
            padding: 1.2rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-elevation);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1rem;
            width: 100%;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-premium);
        }

        .submit-button:active {
            transform: translateY(-1px);
        }

        /* Executive Contact Information */
        .executive-contact-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            width: 100%;
        }

        .executive-header {
            background: white;
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow-elevation);
            position: relative;
            overflow: hidden;
        }

        .executive-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-primary);
            border-radius: 25px 25px 0 0;
        }

        .executive-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--premium-black);
            font-family: 'Poppins', sans-serif;
        }

        .executive-subtitle {
            color: var(--primary-orange);
            font-weight: 600;
            font-size: clamp(1rem, 2vw, 1.2rem);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
        }

        .managing-director {
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 20px;
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            font-weight: 700;
            box-shadow: var(--shadow-elevation);
        }

        .executive-contacts-grid {
            display: grid;
            gap: 1.5rem;
        }

        .executive-contact-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-elevation);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .executive-contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .executive-contact-card:hover::before {
            transform: scaleY(1);
        }

        .executive-contact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-premium);
        }

        .executive-contact-item {
            display: flex;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .executive-contact-item:last-child {
            border-bottom: none;
        }

        .executive-contact-item:hover {
            background: rgba(255, 0, 0, 0.05);
            border-radius: 12px;
            padding: 1rem;
            margin: 0 -1rem;
        }

        .executive-contact-icon {
            width: 55px;
            height: 55px;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
            box-shadow: var(--shadow-elevation);
        }

        .executive-contact-icon i {
            color: white;
            font-size: 1.3rem;
        }

        .executive-contact-info {
            flex-grow: 1;
        }

        .executive-contact-label {
            font-weight: 700;
            color: var(--premium-black);
            margin-bottom: 0.25rem;
            font-size: clamp(0.95rem, 2vw, 1.1rem);
        }

        .executive-contact-value {
            color: var(--steel-gray);
            font-size: clamp(0.9rem, 2vw, 1rem);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .executive-contact-value:hover {
            color: var(--primary-orange);
        }

        .executive-contact-value.clickable {
            cursor: pointer;
            font-weight: 500;
        }

        .headquarters-card {
            background: var(--gradient-secondary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .headquarters-card::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="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: 25px 25px;
            animation: float 20s ease-in-out infinite;
            opacity: 0.3;
        }

        .headquarters-card .executive-contact-icon {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .headquarters-card .executive-contact-label {
            color: white;
        }

        .headquarters-card .executive-contact-value {
            color: rgba(255, 255, 255, 0.9);
        }

        .headquarters-card .executive-contact-item {
            border-bottom-color: rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
        }

        .headquarters-card .executive-contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Enhanced Footer */
        .footer {
            background: var(--premium-black);
            color: white;
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            width: 100%;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-section h3 {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
            font-family: 'Poppins', sans-serif;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: clamp(0.9rem, 2vw, 1rem);
            border-left: 3px solid transparent;
            padding-left: 0.75rem;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            transform: translateX(5px);
            border-left-color: var(--primary-orange);
        }

        .footer-logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo-section h3 {
            margin: 0;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
        }

        .footer-company-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.7;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: clamp(0.85rem, 1.8vw, 0.95rem);
        }

        .footer-contact-item i {
            color: var(--primary-orange);
            width: 20px;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(255, 0, 0, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-orange);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            border: 2px solid rgba(255, 0, 0, 0.2);
        }

        .social-links a:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-elevation);
            border-color: var(--primary-orange);
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: clamp(0.85rem, 1.8vw, 0.95rem);
            margin-top: 1rem;
        }

        /* Enhanced Floating Action Button */
        .fab {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            text-decoration: none;
            box-shadow: var(--shadow-premium);
            z-index: 999;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .fab:hover {
            transform: scale(1.1);
            box-shadow: 0 25px 50px rgba(255, 122, 0, 0.3);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
            }

            50% {
                box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
            }

            100% {
                box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
            }
        }

        /* Enhanced Responsive Breakpoints */
        @media (max-width: 1200px) {

            .navbar-container,
            .section-container {
                padding: 0 1.5rem;
            }

            .contact-main-grid {
                gap: 3rem;
            }

            .tanker-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-button {
                display: flex;
            }

            .contact-main-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .logo-text h1 {
                font-size: 1.1rem;
            }

            .logo-text p {
                font-size: 0.6rem;
            }

            .emergency-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .leadership-card {
                padding: 2.5rem 1.5rem;
            }

            .leader-contacts {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .professional-form-container {
                padding: 2.5rem;
            }

            .tanker-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
            }

            .tanker-card {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }

            .contact-section-new {
                padding: 4rem 0;
            }

            .hero {
                padding-top: 70px;
                min-height: 90vh;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .card-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .service-areas {
                grid-template-columns: repeat(2, 1fr);
            }

            .fab {
                bottom: 1rem;
                right: 1rem;
                width: 55px;
                height: 55px;
                font-size: 1.2rem;
            }

            .leadership-card {
                padding: 2rem 1.5rem;
            }

            .professional-form-container {
                padding: 2rem;
            }

            .emergency-section {
                padding: 3rem 0;
            }

            .executive-header {
                padding: 2rem;
            }

            .executive-contact-card {
                padding: 1.5rem;
            }

            .tanker-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .tanker-card {
                padding: 2rem 1.5rem;
            }

            .tanker-icon {
                width: 80px;
                height: 80px;
            }

            .tanker-icon i {
                font-size: 2rem;
            }
        }

        @media (max-width: 640px) {

            .navbar-container,
            .section-container,
            .hero-container {
                padding: 0 1rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .service-areas {
                grid-template-columns: 1fr 1fr;
            }

            .logo-text h1 {
                font-size: 1rem;
            }

            .cta-button {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .emergency-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .tanker-card {
                padding: 2rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 2.5rem 0;
            }

            .contact-section-new {
                padding: 3rem 0;
            }

            .hero-content {
                padding: 0 0.5rem;
            }

            .card,
            .professional-form-container {
                padding: 1.5rem;
            }

            .leadership-card {
                padding: 2rem 1rem;
            }

            .executive-header {
                padding: 1.5rem;
            }

            .executive-contact-card {
                padding: 1.25rem;
            }

            .executive-contact-item {
                padding: 0.75rem 0;
            }

            .executive-contact-icon {
                width: 45px;
                height: 45px;
                margin-right: 1rem;
            }

            .executive-contact-icon i {
                font-size: 1.1rem;
            }

            .tanker-card {
                padding: 1.5rem 1rem;
            }

            .tanker-icon {
                width: 70px;
                height: 70px;
            }

            .tanker-icon i {
                font-size: 1.8rem;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Print Styles for PDF Export */
        @media print {
            * {
                -webkit-print-color-adjust: exact !important;
                print-color-adjust: exact !important;
            }

            body {
                font-size: 11pt;
                line-height: 1.4;
            }

            .navbar {
                position: static !important;
                box-shadow: none !important;
                background: white !important;
                min-height: auto;
            }

            .hero {
                min-height: 50vh !important;
                padding-top: 0 !important;
            }

            .section {
                page-break-inside: avoid;
                padding: 1.5rem 0 !important;
            }

            .contact-section-new {
                padding: 2rem 0 !important;
            }

            .fab,
            .mobile-menu,
            .mobile-backdrop,
            .mobile-menu-button {
                display: none !important;
            }

            .card,
            .stat-card,
            .service-card,
            .testimonial-card,
            .professional-form-container,
            .executive-contact-card,
            .tanker-card {
                page-break-inside: avoid;
                margin-bottom: 0.75rem;
            }

            .section-container {
                padding: 0 0.75rem !important;
            }

            .hero-title {
                font-size: 2.5rem !important;
            }

            .section-title {
                font-size: 1.75rem !important;
            }

            .contact-main-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }

            .tanker-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1rem !important;
            }
        }

        @media (max-width: 1050px) {
            .cta-button {
                display: none;
            }
        }