/* General Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f8f9fa;
    --accent-color: #007bff;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
.header {
    padding-top: 64px;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Navbar Styles */
.navbar {
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity)) !important;
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    padding: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: white;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.product-card .btn {
    width: 100%;
    padding: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.about img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: white;
}

.contact-info {
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.form-control {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    gap: 1.5rem;
}

.footer-links li {
    display: inline;
}

.footer-links a {
    color: #fff;
    text-decoration: underline;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive adjustments for products */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card, .product-card {
        margin-bottom: 1rem;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
}

/* Product Detail Page Styles */
.product-detail {
    padding: 50px 0 50px;
    background-color: #f8f9fa;
}

.product-gallery {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.product-gallery .main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail-images img:hover {
    transform: scale(1.1);
}

.product-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.product-info .price {
    font-size: 2rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 30px;
}

.product-info .description {
    margin-bottom: 30px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: #333;
}

.product-info p {
    color: #666;
    line-height: 1.6;
}

.product-info ul {
    list-style: none;
    padding: 0;
}

.product-info ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.product-info ul li:before {
    content: "✓";
    color: #28a745;
    position: absolute;
    left: 0;
}

.product-info .table {
    margin-top: 15px;
}

.product-info .table td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
}

.product-info .actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.product-info .actions .btn,
.product-info .actions .btn-primary,
.product-info .actions .btn-outline-primary {
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 0.8rem 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 8px;
}

.product-info .actions .btn {
    min-width: 160px;
    flex: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-detail {
        padding: 50px 0 50px;
    }

    .product-info {
        margin-top: 30px;
    }

    .product-info h1 {
        font-size: 2rem;
    }

    .product-info .price {
        font-size: 1.75rem;
    }

    .product-info .actions {
        flex-direction: column;
    }

    .product-info .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px;
    }
}

nav.bg-transparent,
.navbar.bg-transparent,
.bg-transparent {
    --bs-bg-opacity: 1 !important;
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity)) !important;
}

#randevu-popup {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#randevu-popup .popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  position: relative;
  min-height: 100px;
}
#randevu-popup .popup-content .popup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin-bottom: 1.5rem;
}
#randevu-popup .popup-content .popup-header h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  flex-grow: 1;
  text-align: center;
}
#randevu-popup .popup-content .popup-header h3.popup-title-centered {
    margin-left: 45px;
}
#randevu-popup .popup-content label {
  font-weight: 500;
  margin-bottom: 0.3rem;
  display: block;
}
#randevu-popup .popup-content input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
#randevu-popup .popup-content button {
  width: 100%;
  padding: 0.7rem;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 0.5rem;
}
#randevu-popup .popup-content .close-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  background: #e74c3c;
  border: none;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: none;
  z-index: 10;
  line-height: 1;
  padding: 0;
  border-radius: 20%;
  margin-left: 16px;
}
#randevu-popup .popup-content .close-btn:hover,
#randevu-popup .popup-content .close-btn:focus {
  background: #e74c3c;
  color: #fff;
  outline: none;
}

.navbar-collapse {
  background: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  border-radius: 0 0 18px 18px !important;
  padding: 0 !important;
  margin: 0 !important;
} 