/* 
   Swagatam Logistics - Custom Styling
   Color Palette: Blue (#003178), White (#ffffff), Orange (#ff6b00)
*/

:root {
    --primary-blue: #002b5c; /* Much darker, professional Navy Blue */
    --secondary-orange: #ff6b00;
    --accent-orange: #ff8c00;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --transition: all 0.3s ease-in-out;
}

.text-shadow-sm {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.shadow-soft-premium {
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top: 5px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: var(--transition);
}

/* Override Bootstrap Primary */
.bg-primary {
    background-color: var(--primary-blue) !important;
}

.text-primary {
    color: var(--primary-blue) !important;
}

.btn-primary {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue) !important;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-gray) !important;
    margin: 0 10px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-orange) !important;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background-color: var(--secondary-orange);
    color: var(--white);
}

.btn-outline-custom {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Hero Section */
.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 49, 120, 0.8), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Headings */
.section-padding {
    padding: 100px 0;
}

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

.section-title h2 {
    font-weight: 800;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-orange);
}

/* Cards */
.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-custom img {
    height: 250px;
    object-cover: cover;
}

.card-icon {
    font-size: 3rem;
    color: var(--secondary-orange);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    background-color: var(--light-gray);
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin: 10px;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 30px;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-orange);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary-orange);
    transform: scale(1.1);
}

/* Floating WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 5px;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    display: none;
    transition: var(--transition);
}

.back-to-top:hover {
    background-color: var(--secondary-orange);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 60px 0;
    }
}

/* Track Bar */
.track-bar {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.track-input {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    padding: 12px 20px;
    border-radius: 5px;
}

.btn-track {
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 700;
    padding: 12px 30px;
}

/* About Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--secondary-orange);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

/* New Service Cards */
.service-card-v2 {
    transition: var(--transition);
    border-bottom: 4px solid transparent !important;
}

.service-card-v2:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--secondary-orange) !important;
}

.service-card-v2 .service-icon-box {
    position: absolute;
    bottom: -25px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    z-index: 2;
}

.service-card-v2 img {
    transition: transform 0.5s ease;
}

.service-card-v2:hover img {
    transform: scale(1.1);
}

/* Service Card Variants */
.card-service-dark {
    background-color: var(--primary-blue);
    color: var(--white);
}

.card-service-orange {
    background-color: var(--secondary-orange);
    color: var(--white);
}

.card-service-dark .card-icon,
.card-service-orange .card-icon {
    color: var(--white);
}

.card-service-dark .text-muted,
.card-service-orange .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

/* Animations */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
}

.reveal.fade-bottom {
    transform: translateY(50px);
}

.reveal.fade-bottom.active {
    transform: translateY(0);
}

/* Navbar Logo Refinement */
.logo-container {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-container {
    transform: scale(1.05);
}

.brand-text span {
    transition: all 0.3s ease;
}

.navbar-brand:hover .brand-text span:first-child {
    color: var(--secondary-orange) !important;
}

.logo-img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-white {
    filter: brightness(0) invert(1);
}

/* Detailed Footer Styling v4 */
.bg-dark-blue {
    background-color: #001a35; /* Even darker navy for depth */
}

.bg-dark-darker {
    background-color: #000e1c;
}

.footer-heading {
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-orange);
}

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

.footer-links-v4 li a:hover {
    color: var(--secondary-orange);
    padding-left: 5px;
}

.social-icons-v4 a {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons-v4 a:hover {
    color: var(--secondary-orange);
    transform: translateY(-3px);
    display: inline-block;
}

.contact-info-v4 p {
    margin-bottom: 15px;
}

.x-small {
    font-size: 0.7rem;
}

/* Footer Refinement */
.social-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon-box:hover {
    background: var(--secondary-orange);
    color: white;
    transform: translateY(-3px);
}

.footer-hover-link:hover {
    color: var(--secondary-orange) !important;
    padding-left: 5px;
    opacity: 1 !important;
}

.footer-links li a {
    transition: all 0.3s ease;
}

/* --- Services Page Enhancements --- */

/* Premium Service Cards */
.service-card-premium {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 4px solid transparent !important;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    border-bottom: 4px solid var(--secondary-orange) !important;
}

.service-card-premium .service-icon i {
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-icon i {
    transform: scale(1.1);
    color: var(--secondary-orange) !important;
}

/* Featured Service Section */
.featured-img-box img {
    transition: transform 0.5s ease;
}

.featured-img-box:hover img {
    transform: scale(1.02);
}

.experience-badge {
    border-left: 5px solid var(--secondary-orange);
}

/* Process Steps */
.process-box {
    transition: all 0.3s ease;
}

.process-icon-main {
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.process-box:hover .process-icon-main {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    transform: rotateY(180deg);
}

.process-box:hover .process-icon-main i {
    color: var(--white) !important;
}

/* Testimonials Glass Design */
.glass-card {
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-5px);
}

.avatar-circle {
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Section Header Decoration */
.section-title {
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-orange);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px; /* Offset for WhatsApp */
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top:hover {
    background-color: var(--secondary-orange);
    color: white;
    transform: translateY(-5px);
}

/* WhatsApp Animation */
.whatsapp-btn {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
/* Contact Page Enhancements */
.contact-info-card {
    transition: all 0.3s ease;
    border-top: 3px solid transparent !important;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    border-top: 3px solid var(--secondary-orange) !important;
}

.contact-form-premium .form-control:focus, 
.contact-form-premium .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.15);
    border-color: var(--secondary-orange);
}

.contact-image-box img {
    transition: all 0.5s ease;
}

.contact-image-box:hover img {
    transform: scale(1.05);
}

.contact-overlay-card {
    z-index: 5;
}

/* Visual Image Grid - Service Card v3 */
.service-card-v3 {
    cursor: pointer;
}

.service-card-v3 img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-v3:hover img {
    transform: scale(1.1);
}

.overlay-gradient {
    transition: all 0.4s ease;
    background: linear-gradient(to top, rgba(0, 43, 92, 0.98), rgba(0, 43, 92, 0.4), transparent) !important;
}

.service-card-v3:hover .overlay-gradient {
    padding-bottom: 3rem !important;
}

.icon-circle {
    transition: all 0.4s ease;
}

.service-card-v3:hover .icon-circle {
    transform: rotateY(360deg) scale(1.1);
    background-color: var(--white) !important;
    color: var(--secondary-orange) !important;
}

/* Minimalist Contact Styling */
.contact-card-minimal {
    transition: all 0.3s ease;
}

.contact-card-minimal:hover {
    background-color: var(--light-gray) !important;
    transform: translateY(-5px);
}

.contact-card-minimal i {
    transition: all 0.3s ease;
}

.contact-card-minimal:hover i {
    transform: scale(1.1);
}

.contact-card-minimal p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gallery Styling */
.filter-btn {
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 43, 92, 0.3);
}

.gallery-item {
    transition: all 0.5s ease;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 43, 92, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
}

.gallery-card:hover img {
    transform: scale(1.15);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--secondary-orange);
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery-overlay h5 {
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.gallery-card:hover .gallery-overlay i, 
.gallery-card:hover .gallery-overlay h5 {
    transform: translateY(0);
}

/* Lightbox Styling */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
}

.lightbox-img {
    width: 100%;
    height: auto;
    border: 5px solid white;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary-orange);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -50px;
        right: 0;
    }
}/* Cinematic Contact Redesign */
.contact-premium-wrapper {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.contact-info-sidebar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a35 100%);
    color: var(--white);
    padding: 60px;
    position: relative;
}

.contact-info-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.contact-info-item {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 20px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-info-item p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-form-main {
    padding: 60px;
}

.premium-input-group {
    position: relative;
    margin-bottom: 30px;
}

.premium-input-group label {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.premium-input-group .form-control {
    border: none;
    background: #f8faff;
    border-radius: 12px;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.premium-input-group .form-control:focus {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.05);
    transform: translateY(-2px);
}

.btn-premium-send {
    background: linear-gradient(90deg, var(--secondary-orange), #ff8c00);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px;
    width: 100%;
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-premium-send:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.3);
}

/* Contact Page - Card & Form Styling V2 */
.contact-card-v2 {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.contact-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--secondary-orange);
}

.contact-card-v2 i {
    width: 60px;
    height: 60px;
    background: rgba(0, 43, 92, 0.05);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card-v2:hover i {
    background: var(--primary-blue);
    color: white;
}

.contact-form-v2 {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.contact-side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.map-container-v2 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    line-height: 0;
}

.cta-banner-v2 {
    background: linear-gradient(rgba(0, 43, 92, 0.7), rgba(0, 43, 92, 0.7)), url('../img/hero.png') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 0;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.cta-floating-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    max-width: 900px;
    width: 90%;
    border-top: 8px solid var(--secondary-orange);
    position: relative;
    z-index: 1;
}

.cta-floating-card h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.1;
}

.cta-floating-card .lead {
    color: #555;
    font-size: 1.25rem;
    margin-bottom: 40px;
}
/* Premium Contact UI Styles - Ultra-Sharp Industrial */
.contact-hero-premium {
    background: linear-gradient(rgba(0, 20, 40, 0.75), rgba(0, 20, 40, 0.75)), url('../img/hero.png') no-repeat center center/cover;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.contact-hero-premium h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.contact-card-premium {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 2px; /* Reduced from 8px */
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    border-color: var(--secondary-orange);
}

.contact-card-premium .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 43, 92, 0.05);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px; /* Reduced from 6px */
    margin: 0 auto 25px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card-premium:hover .icon-box {
    background: var(--secondary-orange);
    color: white;
    transform: scale(1.1);
}

.contact-image-card {
    position: relative;
    border-radius: 2px; /* Reduced from 8px */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    height: 100%;
}

.contact-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.contact-image-card:hover img {
    transform: scale(1.1);
}

.contact-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 43, 92, 0.95), transparent);
    color: white;
}

.form-container-premium {
    background: #ffffff;
    padding: 50px;
    border-radius: 2px; /* Reduced from 8px */
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.premium-input {
    border: 1px solid #eee !important;
    padding: 15px 20px !important;
    border-radius: 0 !important; /* Sharp corners */
    background: #fcfcfc !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.premium-input:focus {
    border-color: var(--primary-blue) !important;
    background: #fff !important;
    box-shadow: 0 0 15px rgba(0, 43, 92, 0.1) !important;
    transform: translateY(-2px);
}

.btn-premium-action {
    background: linear-gradient(45deg, #ff6b00, #ff8c00);
    color: white;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 0; /* Sharp corners */
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    width: 100%;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.btn-premium-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
    color: white;
}

.map-wrapper-premium {
    border-radius: 2px; /* Reduced from 8px */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 60px 0;
}

.cta-premium-banner {
    background: linear-gradient(135deg, #001a35 0%, #002b5c 100%);
    padding: 80px 40px;
    border-radius: 0; /* Ultra-sharp banner */
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}
