@import url("https://fonts.googleapis.com/css?family=Montserrat");

/* ===== VARIABLES ===== */
:root {
    --primary: #2c5aa0;
    --primary-dark: #1e3a6e;
    --secondary: #f8c300;
    --accent: #e63946;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 12px;
    --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #3a6bc5 100%);
    --gradient-secondary: linear-gradient(135deg, #f8c300 0%, #ffd700 100%);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    max-width: 100vw;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

/* ... existing code ... */

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.container {
    background: #ffffff;
    max-width: 1440px;
    margin: auto;
    overflow: hidden;
}

/* ===== ANIMATED BACKGROUND ELEMENTS ===== */
.floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.floating-box {
    position: absolute;
    background: rgba(44, 90, 160, 0.05);
    border-radius: 20px;
    /* animation: floatAround 20s infinite linear; */
}

.floating-box:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-box:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.floating-box:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 20s;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes floatAround {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(40px, 0) rotate(180deg);
    }

    75% {
        transform: translate(20px, 20px) rotate(270deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px) rotate(-5deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px) rotate(5deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(44, 90, 160, 0.4), 0 0 30px rgba(44, 90, 160, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(44, 90, 160, 0.6), 0 0 40px rgba(44, 90, 160, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }

    80% {
        opacity: 1;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {

    0%,
    100% {
        border-color: transparent
    }

    50% {
        border-color: var(--secondary)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== MAIN SECTION STYLES ===== */
.exim-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 25px;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

/* ===== LEFT FORM BOX ===== */
.exim-left-box {
    flex: 1;
    min-width: 320px;
    max-height: fit-content;
    align-self: flex-start;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 35px;
    margin-right: 30px;
    margin-bottom: 30px;
    animation: fadeInLeft 1s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.exim-left-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.exim-left-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(44, 90, 160, 0.03) 50%, transparent 70%);
    z-index: -1;
    /* animation: shimmer 3s infinite linear; */
    background-size: 200% auto;
}

.exim-left-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    background-size: 200% 100%;
    /* animation: shimmer 2s infinite linear; */
}

.form-main-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.5s both;

    text-align: left;
}

.form-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    animation: slideInRight 1s ease-out 0.8s both;
}

.form-sub-title {
    color: var(--gray);
    font-size: 1.5rem;
    margin-bottom: 35px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    position: relative;
}

/* ===== FORM STYLES ===== */
.exim-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.exim-form label {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.exim-form label::before {
    content: '→';
    margin-right: 8px;
    color: var(--secondary);
    font-weight: bold;
    transition: var(--transition);
}

.exim-form input {
    padding: 16px 20px;
    margin-bottom: 25px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(248, 249, 250, 0.8);
    position: relative;
}

.exim-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.15);
    transform: translateY(-3px);
}

.exim-form input::placeholder {
    color: #adb5bd;
    transition: var(--transition);
}

.exim-form input:focus::placeholder {
    color: transparent;
}

.done-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 1.1s both;
    /* Removed pulseGlow */
    letter-spacing: 1px;
}

.done-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.done-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(44, 90, 160, 0.4);
}

.done-btn:hover::before {
    left: 100%;
}

.done-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* ===== CONTACT INFO ===== */
.contact-info {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(248, 195, 0, 0.05) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary);
    animation: fadeInUp 0.8s ease-out 1.3s both;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="%232c5aa0" stroke-width="0.5" stroke-dasharray="5,5"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.contact-title {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    padding: 10px;
    border-radius: 8px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(10px);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item ion-icon {
    color: var(--primary);
    font-size: 1.6rem;
    margin-right: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.contact-item ion-icon:nth-child(1) {
    animation-delay: 0s;
}

.contact-item ion-icon:nth-child(2) {
    animation-delay: 1s;
}

.contact-item ion-icon:nth-child(3) {
    animation-delay: 2s;
}

.contact-item span {
    color: var(--dark);
    line-height: 1.6;
    font-weight: 500;
}

.phones {
    line-height: 1.8 !important;
}

/* ===== RIGHT CONTENT ===== */
.exim-right-row {
    flex: 2;
    min-width: 320px;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.images-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
    perspective: 1000px;
}

.images-row img {
    flex: 1;
    min-width: 280px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out 0.7s both;
    filter: brightness(0.95);
    transform-style: preserve-3d;
}

.images-row img:nth-child(2) {
    animation-delay: 0.9s;
}

.images-row img:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
    z-index: 2;
}

/* ===== COMPANY INFO ===== */
.company-info {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.company-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(44, 90, 160, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.company-info p {
    margin-bottom: 25px;
    text-align: justify;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.company-why-title {
    color: var(--primary);
    margin: 35px 0 25px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 1.3s both;

    text-align: left;
}

.company-why-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    animation: slideInRight 1s ease-out 1.5s both;
}

.list-with-image {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.list-with-image ul {
    flex: 1;
    min-width: 280px;
    list-style-type: none;
}

.list-with-image ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark);
    opacity: 0;
    animation: fadeInLeft 0.6s ease-out forwards;
}

.list-with-image ul li:nth-child(1) {
    animation-delay: 1.7s;
}

.list-with-image ul li:nth-child(2) {
    animation-delay: 1.9s;
}

.list-with-image ul li:nth-child(3) {
    animation-delay: 2.1s;
}

.list-with-image ul li:nth-child(4) {
    animation-delay: 2.3s;
}

.list-with-image ul li:nth-child(5) {
    animation-delay: 2.5s;
}

.list-with-image ul li:nth-child(6) {
    animation-delay: 2.7s;
}

.list-with-image ul li:nth-child(7) {
    animation-delay: 2.9s;
}

.list-with-image ul li:nth-child(8) {
    animation-delay: 3.1s;
}

.list-with-image ul li:nth-child(9) {
    animation-delay: 3.3s;
}


.list-with-image ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    background: var(--gradient-primary);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(44, 90, 160, 0.3);
    transition: var(--transition);
}

.list-with-image ul li:hover::before {
    transform: scale(1.2) rotate(15deg);
    background: var(--gradient-secondary);
    color: var(--primary);
}

.image-container {
    flex: 1;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    animation: fadeInRight 0.8s ease-out 1.7s both;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(44, 90, 160, 0.1) 50%, transparent 70%);
    z-index: 1;
    /* animation: shimmer 3s infinite linear; */
    background-size: 200% auto;
    pointer-events: none;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
    filter: sepia(0.2);
}

.image-container:hover img {
    transform: scale(1.05);
    filter: sepia(0);
}

/* ===== SPECIAL EFFECTS ===== */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(44, 90, 160, 0.4);
    transform: scale(0);
    animation: ripple 0.8s linear;
    pointer-events: none;
}

.typing-text {
    overflow: hidden;
    border-right: 3px solid var(--secondary);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
    width: 0;
    animation-fill-mode: forwards;
    animation-delay: 0.5s;
}

.counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-block;
    animation: bounceIn 1s ease-out;
}

/* ===== LOADING ANIMATION ===== */
.loading-spinner {
    display: none;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-indicator:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.6);
}

/* =========== PAGE TITLE ABOVE CONTENT =========== */
.exim-page-title {
    width: 100%;
    text-align: center;
    margin-top: 130px;
    margin-bottom: 40px;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #222;
}

/* ========================================= */
/* =========== LOCATIONS SECTION =========== */
/* ========================================= */
.locations-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    width: 100%;
}

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

.locations-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #0062ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.locations-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* 5-column grid with proper spacing */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    perspective: 1000px;
    width: 100%;
}

/* Compact cards with proper margins */
.location-card {
    background: white;
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 98, 255, 0.15);
    border-color: #0062ff;
}

.location-icon {
    font-size: 20px;
    color: #0062ff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.2);
    color: #00d4ff;
}

.location-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover .location-name {
    color: #0062ff;
}

/* =========== RESPONSIVE STYLES =========== */
@media (max-width: 1200px) {
    .exim-left-box {
        margin-right: 0;
    }

    .exim-section {
        flex-direction: column;
    }

    .images-row img {
        height: 250px;
    }

    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .locations-container {
        padding: 0 25px;
    }

    .locations-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .exim-section {
        padding: 0 15px;
        margin: 20px auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .exim-left-box,
    .exim-right-row {
        min-width: 0;
        width: 100%;
        margin-right: 0;
    }

    .exim-left-box,
    .company-info {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .form-main-title {
        font-size: 2rem;
        text-align: left;
    }

    .form-sub-title {
        font-size: 1.3rem;
    }

    .company-why-title {
        font-size: 1.5rem;
        text-align: left;
    }

    .images-row {
        flex-direction: column;
        width: 100%;
    }

    .images-row img {
        width: 100%;
        min-width: 0;
        height: auto;
        max-width: 100%;
    }

    .list-with-image {
        flex-direction: column;
    }

    .contact-item ion-icon {
        font-size: 1.4rem;
    }

    .done-btn {
        padding: 16px;
        font-size: 1.1rem;
    }

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

    .locations-section {
        padding: 40px 0;
    }

    .locations-container {
        padding: 0 20px;
    }

    .location-card {
        padding: 12px 8px;
        min-height: 85px;
    }

    .location-name {
        font-size: 0.9rem;
    }

    .location-icon {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .form-main-title {
        font-size: 1.8rem;

        text-align: left;
    }

    .exim-form input,
    .done-btn {
        padding: 14px 16px;
    }

    .images-row img {
        height: 200px;
    }

    .contact-info {
        padding: 20px;
    }

    .company-info p {
        font-size: 0.95rem;
    }

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

    .locations-container {
        padding: 0 15px;
    }

    .locations-title {
        font-size: 1.8rem;
    }

    .locations-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .location-card {
        min-height: 80px;
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }
}

/* =========== FOOTER (From Global Style) =========== */
.footer {
    background-color: #050e38;
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    margin-top: 20px;
    color: #ccc;
    font-size: 15px;
}

.footer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-profile h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #ff4444;
    text-transform: uppercase;
}

.footer-profile span {
    font-size: 14px;
    color: #aaa;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact i {
    color: #ffbb33;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li {
    color: #ccc;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #ccc;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    font-size: 15px;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 var(--px);
        gap: 30px;
    }

    .footer {
        padding: 40px 0 0;
    }
}

/* =========== FLOATING WHATSAPP BUTTON =========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.my-float {
    margin-top: 1px;
}

/* Pulse Animation */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* ===== ANIMATION CLASSES ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-text {
    position: relative;
    z-index: 2;
}