/* ============================================
   Complete Website CSS - Generated by Style Editor
   Best Deal Forex Private Limited
   ============================================ */

/* ============================================
   GLOBAL STYLES - ALL PAGES
   ============================================ */

/* Hero Section - All Pages */
.hero,
.hero-professional,
.page-header {
    padding: 3.75rem 0;
    min-height: 170px;
    text-align: center;
    position: relative;
}

#hero-title,
.hero h1,
.hero-professional h1 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    color: white;
}

#hero-subtitle,
.hero p,
.hero-professional p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Spacing - All Pages */
.section {
    padding: 2rem 0;
}

.section-title h2 {
    margin-bottom: 0.6rem;
}

.section-light {
    background: rgba(248, 250, 252, 0.5);
}

/* Cards & Grid - All Pages */
.services-grid-2x3,
.services-grid,
.contact-info {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.services-grid-2x3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card-professional,
.contact-item {
    padding: 1.25rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Footer - All Pages */
footer {
    padding: 2rem 0;
}

.footer-section {
    padding: 1.5rem 0;
}

.footer-divider {
    margin: 1.5rem 0;
}

/* Navigation - All Pages */
.nav-container {
    padding: 12px 16px;
}

.nav-menu {
    gap: 1rem;
}

.nav-item a {
    font-size: 0.95rem;
}

/* Buttons - All Pages */
.btn-professional,
.learn-more-btn,
button[type="submit"] {
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-professional:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.3);
}

/* ============================================
   INDEX PAGE SPECIFIC STYLES
   ============================================ */

/* Index Hero Section */
.hero.hero-professional {
    padding: 3.75rem 0;
    min-height: 170px;
}

.hero #hero-title {
    font-size: 2.1rem;
}

/* Services Grid - Index Page */
.services-grid-2x3 {
    gap: 1.25rem;
}

.services-grid-2x3 .service-card-professional {
    padding: 1.25rem;
}

/* Rates Table - Index Page */
.forex-rates-table th {
    padding: 16px;
    font-size: 0.9rem;
    background: #004AAD;
    color: white;
}

.forex-rates-table td {
    padding: 14px;
    font-size: 0.9rem;
}

.forex-rates-table tbody tr:hover {
    background: rgba(0, 191, 166, 0.05);
}

/* Rate Sheet Container */
.rate-sheet-table {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

/* Contact Form Inputs */
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form input[type="number"],
#contact-form textarea,
#contact-form select {
    padding: 12px;
    font-size: 0.95rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    width: 100%;
    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: #00BFA6;
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
}

/* Contact Info Grid */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, rgba(0, 191, 166, 0.05) 0%, rgba(0, 74, 173, 0.05) 100%);
    border-radius: 12px;
    border: 2px solid rgba(0, 191, 166, 0.2);
}

.contact-item h3 {
    color: #004AAD;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

.about-section {
    padding: 2rem 0;
}

.about-section p {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

/* ============================================
   PRODUCTS/SERVICES PAGE SPECIFIC STYLES
   ============================================ */

.products-section .service-card-professional {
    padding: 1.25rem;
}

.products-section .services-grid {
    gap: 1.25rem;
}

/* ============================================
   KNOWLEDGE PAGE SPECIFIC STYLES
   ============================================ */

.knowledge-section {
    padding: 2rem 0;
}

.knowledge-section p {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    text-align: justify;
}

.knowledge-section ul {
    margin-bottom: 0.6rem;
}

/* ============================================
   BLOGS PAGE SPECIFIC STYLES
   ============================================ */

.blog-section {
    padding: 2rem 0;
}

.blog-post {
    margin-bottom: 2rem;
}

/* ============================================
   PRIVACY POLICY PAGE SPECIFIC STYLES
   ============================================ */

.privacy-section {
    padding: 2rem 0;
}

.privacy-section p {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    text-align: justify;
}

.privacy-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN - ALL PAGES
   ============================================ */

@media (max-width: 768px) {
    /* Hero adjustments for mobile */
    .hero,
    .hero-professional,
    .page-header {
        padding: 2.5rem 0;
        min-height: 120px;
    }
    
    #hero-title,
    .hero h1,
    .hero-professional h1 {
        font-size: 1.6rem;
    }
    
    #hero-subtitle,
    .hero p {
        font-size: 0.9rem;
    }
    
    /* Section spacing for mobile */
    .section {
        padding: 1.5rem 0;
    }
    
    /* Cards grid for mobile */
    .services-grid-2x3,
    .contact-info {
        gap: 1rem;
    }
    
    .service-card-professional,
    .contact-item {
        padding: 1rem;
    }
    
    /* Table adjustments for mobile */
    .forex-rates-table th,
    .forex-rates-table td {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    /* Form inputs for mobile */
    #contact-form input,
    #contact-form textarea,
    #contact-form select {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    /* Button adjustments for mobile */
    .btn-professional,
    .learn-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Navigation for mobile */
    .nav-container {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    #hero-title,
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .forex-rates-table th,
    .forex-rates-table td {
        padding: 6px;
        font-size: 0.75rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

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

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

.animate-delay-6 {
    animation-delay: 0.6s;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .header,
    .nav-container,
    .mobile-menu-btn,
    .btn-professional,
    .learn-more-btn,
    footer {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* End of CSS */
