/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

a {
    color: #1e3c72;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2a5298;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   HEADER STYLES
   =========================== */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 100;
}

.top-bar {
    background: rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.top-bar:hover {
    background: rgba(0, 0, 0, 0.2);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.translate-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: rgba(255, 215, 0, 0.15);
    border: 2px solid #ffd700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.translate-widget:hover {
    background-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.2);
}

.translate-widget i {
    color: #ffd700;
    font-size: 1rem;
}

.goog-te-gadget {
    font-family: Arial, sans-serif !important;
    font-size: 0.85rem !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background-color: transparent !important;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: inline-block !important;
    margin: 0 !important;
}

.goog-te-gadget-simple .goog-te-combo {
    background-color: transparent !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 2px 6px !important;
    font-size: 0.85rem !important;
    color: white !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background-image: none !important;
    box-shadow: none !important;
}

.goog-te-gadget-simple .goog-te-combo:hover {
    background-color: rgba(255, 215, 0, 0.1) !important;
    border: none !important;
    color: white !important;
}

.goog-te-gadget-simple .goog-te-combo:focus {
    outline: none !important;
    background-color: rgba(255, 215, 0, 0.15) !important;
    border: none !important;
}

.goog-te-combo {
    border-radius: 4px !important;
}

.goog-te-combo option {
    background: white !important;
    color: #1e3c72 !important;
    padding: 8px !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.goog-logo-link {
    display: none !important;
}

/* Hide Google Translate top bar */
.goog-te-top-bar {
    display: none !important;
}

body .goog-te-banner {
    display: none !important;
}

.contact-info span:hover {
    transform: translateX(3px);
    opacity: 0.9;
}

.contact-info i {
    font-size: 1.1rem;
}

.main-header {
    padding: 1.5rem 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 300;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo i {
    color: #ffd700;
    margin-right: 10px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

nav a:hover,
nav a.active {
    opacity: 1;
    border-bottom-color: #ffd700;
    padding-bottom: 5px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 5px;
    color: #ffd700;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after,
.nav-item.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0;
    padding-top: 5px;
    z-index: 1000;
    pointer-events: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-item .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    color: #1e3c72;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f0f7ff;
    padding-left: 25px;
}

.dropdown-menu i {
    font-size: 1.1rem;
    color: #2a5298;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 6px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(15px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: linear-gradient(rgba(30, 60, 114, 0.1), rgba(42, 82, 152, 0.1)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%234a90e2" width="1200" height="400"/><circle fill="%23ffd700" cx="100" cy="100" r="60" opacity="0.3"/><circle fill="%23ffd700" cx="900" cy="300" r="80" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at top right,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 50%
    );
}

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

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    animation: fadeInDown 0.8s ease-out;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

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

/* ===========================
   HERO SLIDER STYLES
   =========================== */
.hero-slider {
    position: relative;
    color: white;
    overflow: hidden;
    z-index: 1;
}

.hero-slider .slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.3), rgba(42, 82, 152, 0.1));
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slide h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.8s ease-out;
}

.hero-slide p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 60, 114, 0.7);
    color: white;
    border: none;
    padding: 15px 18px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 5px;
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(30, 60, 114, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dots .dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* ===========================
   CONTENT SECTION
   =========================== */
.content {
    padding: 60px 20px;
    min-height: 400px;
}

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-description {
    color: #666;
    line-height: 1.8;
}

.card-icon {
    font-size: 2.5rem;
    color: #2a5298;
    margin-bottom: 15px;
}

/* ===========================
   SECTIONS & COMPONENTS
   =========================== */
section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    color: #1e3c72;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2a5298;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-box h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
}

/* ===========================
   GRADIENT SECTIONS
   =========================== */
.gradient-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 60px 40px;
    border-radius: 15px;
    color: white;
    position: relative;
    overflow: hidden;
}

.gradient-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at bottom right,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 70%
    );
}

.gradient-section > * {
    position: relative;
    z-index: 1;
}

.gradient-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.gradient-section h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.gradient-section p {
    opacity: 0.95;
    line-height: 1.8;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
}

.btn-secondary {
    background: white;
    color: #1e3c72;
    border: 2px solid #1e3c72;
}

.btn-secondary:hover {
    background: #1e3c72;
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1e3c72;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section a {
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: #ffd700;
    padding-left: 5px;
}

.footer-section ul {
    list-style: none;
    line-height: 2.2;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #ffd700;
    color: #1e3c72;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    transform: translateY(-3px);
}

.footer-copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-copyright p:first-child {
    margin-bottom: 5px;
    font-weight: 500;
}

/* ===========================
   IMAGE WITH OVERLAY ICON
   =========================== */
.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

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

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

.image-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 114, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.image-card-icon {
    font-size: 3rem;
    color: white;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        border-top: 2px solid #ffd700;
        padding: 20px 0;
        width: 100%;
        margin: 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    nav a {
        width: 100%;
        padding: 15px 20px;
        border-bottom: none;
        border-left: 4px solid transparent;
        margin: 0;
        border-radius: 0;
        background: transparent;
    }

    nav a:hover,
    nav a.active {
        background: rgba(255, 215, 0, 0.1);
        border-left-color: #ffd700;
        border-bottom: none;
        color: #ffd700;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 15px;
    }

    .contact-info {
        justify-content: center;
        width: 100%;
    }

    .translate-widget {
        justify-content: center;
        width: 100%;
    }

    .contact-info {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

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

    .gradient-section {
        padding: 40px 20px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    /* Hide phone and address on mobile, show only email */
    .contact-info span:nth-child(1),
    .contact-info span:nth-child(3) {
        display: none;
    }

    /* Responsive grid layouts - stack on mobile */
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Stack service sections vertically */
    [style*="display: grid"] [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transform: none;
        transition: all 0.3s ease;
        background: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        margin-top: 0;
        border-radius: 0;
    }

    .nav-item:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }

    .nav-item.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        height: auto;
    }

    .dropdown-menu a {
        padding: 12px 20px 12px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 215, 0, 0.15);
        color: #ffd700;
        padding-left: 45px;
    }

    .dropdown-menu i {
        color: #ffd700;
    }

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

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 15px;
    }

    .hero h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content {
        padding: 40px 15px;
    }

    section {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-box {
        padding: 20px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    nav ul {
        gap: 10px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .logo p {
        font-size: 0.8rem;
    }
}

/* ===========================
   RESPONSIVE UTILITIES
   =========================== */
.responsive-grid {
    display: grid;
    gap: 30px;
}

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

@media (max-width: 768px) {
    .responsive-grid {
        grid-template-columns: 1fr;
    }
}

.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* ===========================
   MOBILE CONTACT INFO
   =========================== */
.contact-info span {
    transition: display 0.3s ease;
}

@media (max-width: 768px) {
    .contact-info span:nth-child(1),
    .contact-info span:nth-child(3) {
        display: none;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===========================
   IMAGE SLIDER STYLES
   =========================== */
.image-slider {
    position: relative;
    width: 100%;
    height: 400px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(30, 60, 114, 0.8);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(30, 60, 114, 1);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.mt {
    margin-top: 30px;
}

.mb {
    margin-bottom: 30px;
}

.pt {
    padding-top: 30px;
}

.pb {
    padding-bottom: 30px;
}

.no-wrap {
    white-space: nowrap;
}

.truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* ===========================
   CONTACT FORM STYLING
   =========================== */
#contact-form {
    padding: 30px !important;
    margin: 0 !important;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
    outline: none;
    border-color: #2a5298 !important;
    box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.1);
}

/* Honeypot field - hidden from view but not display: none (bots can detect that) */
.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Form success/error messages */
.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
    animation: slideInDown 0.5s ease;
}

.form-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    animation: slideInDown 0.3s ease;
}

@media (max-width: 768px) {
    #contact-form {
        padding: 20px !important;
    }
}