/* Custom Styles for Aluminium Works Website */

:root {
    --primary-color: #14b8a6;
    --primary-dark: #0d9488;
    --primary-light: #5eead4;
    --secondary-color: #0f766e;
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fbbf24;
    --success-color: #14b8a6;
    --dark-color: #0a0a0a;
    --darker-color: #000000;
    --light-bg: #fafaf9;
    --light-gray: #e7e5e4;
    --text-dark: #1a1a1a;
    --text-light: #525252;
    --gradient-1: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    --gradient-2: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
    --gradient-3: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --shadow-sm: 0 2px 8px rgba(20, 184, 166, 0.08);
    --shadow-md: 0 4px 16px rgba(20, 184, 166, 0.12);
    --shadow-lg: 0 8px 32px rgba(20, 184, 166, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.navbar {
    background: var(--darker-color) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link {
    color: #e2e8f0 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.hero-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(15, 118, 110, 0.9) 100%), 
                url('https://via.placeholder.com/1920x1080?text=Aluminium+Hero+Background') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 140px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.btn {
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
    background: var(--primary-dark) !important;
}

.btn-success {
    background: var(--accent-color) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    background: var(--accent-dark) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient-2);
    border-color: transparent;
    color: white;
}

.btn-light {
    background: white;
    color: var(--dark-color);
    border: none;
}

.btn-light:hover {
    background: var(--light-bg);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--dark-color);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: var(--darker-color);
    transform: translateY(-2px);
}

.hero-buttons .btn {
    margin: 0.5rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-choose-us {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    border-left: 4px solid var(--accent-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-dark);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.gallery-section img {
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.gallery-section img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-color);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.reviews-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.review-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.reviewer {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

.cta-section {
    background: var(--accent-color) !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.areas-section i {
    color: var(--accent-color);
}

.cta-buttons .btn {
    margin: 0.5rem;
}

.areas-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.areas-section ul {
    list-style: none;
    padding: 0;
}

.areas-section li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.areas-section i {
    color: var(--accent-color);
    margin-right: 0.75rem;
}

.footer {
    background: var(--darker-color) !important;
    color: #e2e8f0;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.6);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 120px 0 80px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .service-card,
    .feature-card,
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .navbar-collapse {
        background: var(--darker-color);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.85rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 0.75rem auto;
        width: 100%;
        max-width: 320px;
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 0.75rem auto;
        width: 100%;
        max-width: 320px;
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .navbar-brand {
        font-size: 1.15rem;
    }
    
    .service-card,
    .feature-card,
    .pricing-card,
    .review-card {
        padding: 1.75rem;
    }
    
    .service-icon,
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        bottom: 20px;
        right: 20px;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer .col-md-4 {
        margin-bottom: 2rem;
    }
    
    .areas-section li {
        padding: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 90px 0 50px;
        min-height: 55vh;
    }
    
    .hero-title {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.75rem;
    }
    
    .service-card,
    .feature-card,
    .pricing-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
        margin: 0.25rem 0;
    }
    
    .btn {
        padding: 11px 20px;
        font-size: 0.8rem;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        max-width: 100%;
        padding: 12px 20px;
    }
    
    .price {
        font-size: 1.75rem;
    }
    
    .cta-section h2 {
        font-size: 1.85rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    .row.align-items-center > [class*='col-'] {
        margin-bottom: 1.5rem;
    }
    
    .row.align-items-center > [class*='col-']:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.45rem;
    }
    
    .btn {
        font-size: 0.75rem;
        padding: 10px 18px;
    }
    
    .service-card,
    .feature-card,
    .pricing-card {
        padding: 1.25rem;
    }
}

/* Additional Mobile Optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .feature-card:hover,
    .pricing-card:hover,
    .review-card:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 100px 0 60px;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .service-card,
    .feature-card {
        padding: 2rem;
    }
}

/* Map Container Styles */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.12);
    background-color: #f5f5f5;
    border: 1px solid var(--light-gray);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Contact Form Styles */
.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.contact-form-card h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 1.75rem;
    color: var(--primary-color);
    min-width: 40px;
}

.contact-item h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-info {
    margin: 2rem 0;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .hero-buttons,
    .cta-buttons {
        display: none;
    }
    
    .hero-section {
        background: white;
        color: black;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 0.75rem auto;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 0.75rem auto;
        width: 100%;
        max-width: 300px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}