/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top Bar */
.top-bar {
    background: #6a4c93;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info span {
    margin-right: 20px;
    display: inline-block;
}

.contact-info i {
    margin-right: 5px;
    color: #fff;
}

.social-icons {
    text-align: right;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #f0f0f0;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    position: relative;
    width: 60px;
    height: 60px;
}

.dog-head {
    width: 50px;
    height: 40px;
    background: #6a4c93;
    border-radius: 25px 25px 20px 20px;
    position: relative;
}

.dog-head::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 10px;
    width: 30px;
    height: 15px;
    background: #6a4c93;
    border-radius: 15px 15px 0 0;
}

.dog-head::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 15px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.house {
    position: absolute;
    top: -10px;
    right: 0;
    width: 25px;
    height: 20px;
    background: #6a4c93;
    border-radius: 5px 5px 0 0;
}

.house::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 2px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 8px solid #6a4c93;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.premium {
    font-size: 16px;
    color: #6a4c93;
    font-weight: bold;
}

.pet-palace {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.navbar-nav {
    gap: 20px;
}

.nav-link {
    color: #333 !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 10px 15px !important;
}

.nav-link:hover,
.nav-link.active {
    color: #6a4c93 !important;
}

/* Dropdown on Hover (desktop) */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block !important;
        margin-top: 0;
    }
}

.dropdown-menu {
    max-height: 320px;
    overflow-y: auto;
    z-index: 2000;
}

/* Navbar Toggle Button */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 51, 51, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(106, 76, 147, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-top: 15px;
        padding: 20px;
    }
    
    .navbar-nav {
        gap: 0;
        text-align: center;
    }
    
    .nav-item {
        margin-bottom: 10px;
    }
    
    .nav-item:last-child {
        margin-bottom: 0;
    }
    
    .nav-link {
        padding: 12px 20px !important;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: #f8f9fa;
        transform: translateX(5px);
    }
    
    .navbar-toggler {
        order: 2;
        margin-left: auto;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

/* Main Content Section */
.main-content-section {
    padding: 80px 0;
    background: white;
}

.content-text h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.3;
}

.content-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-image {
    text-align: center;
}

.content-image img {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.02);
}

/* Why Have a Dog Section */
.why-dog-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-dog-section .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
    font-weight: bold;
}

.benefits-content {
    padding-right: 30px;
}

.benefit-item {
    margin-bottom: 40px;
}

.benefit-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.benefits-image {
    position: relative;
}

.benefits-image img {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.benefits-image img:hover {
    transform: scale(1.02);
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background: white;
}

.cta-box {
    background: #6a4c93;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(106, 76, 147, 0.3);
}

.cta-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1.6;
}

.cta-box .contact-number {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

/* Company Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #6a4c93;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.features-image {
    text-align: center;
}

.features-image img {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.features-image img:hover {
    transform: scale(1.02);
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: normal;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.nav-btn {
    position: absolute;
    background: rgba(128, 128, 128, 0.7);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: rgba(128, 128, 128, 0.9);
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-content h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #6a4c93;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.service-text h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.services-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Detailed Services */
.detailed-services {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #6a4c93;
}

.service-card {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 0 0;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: white;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #6a4c93;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.contact-item i {
    color: #6a4c93;
    width: 20px;
}

.learn-more {
    color: #6a4c93;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo .dog-head {
    width: 35px;
    height: 28px;
}

.footer-logo .house {
    width: 18px;
    height: 14px;
}

.footer-logo .premium {
    font-size: 12px;
}

.footer-logo .pet-palace {
    font-size: 18px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer .social-icons {
    text-align: left;
}

.footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.footer .social-icons a:hover {
    background: #6a4c93;
}

.hours {
    margin-top: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-row span:first-child {
    color: #bdc3c7;
}

.hours-row span:last-child {
    color: white;
    font-weight: bold;
}

.footer-bottom {
    background: #6a4c93;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: white;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Page Title */
.page-title {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.page-title h1 {
    font-size: 36px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

/* Puppies Section */
.puppies-section {
    padding: 80px 0;
    background: white;
}

.puppy-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.puppy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.puppy-image {
    height: 250px;
    overflow: hidden;
}

.puppy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.puppy-card:hover .puppy-image img {
    transform: scale(1.05);
}

.puppy-info {
    padding: 20px;
    text-align: center;
}

.puppy-info h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.puppy-info-text {
    padding: 20px;
    text-align: center;
}

.puppy-info-text h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.puppy-info-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Breeder Section */
.breeder-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.breeder-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.intro-text {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.breeder-feature {
    margin-bottom: 40px;
}

.breeder-feature h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.breeder-feature p {
    color: #666;
    line-height: 1.6;
}

.cta-box {
    background: #6a4c93;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.cta-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: normal;
}

.contact-number {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* Puppies Available for Sale Section */
.puppies-available-section {
    padding: 80px 0;
    background: white;
}

.puppy-breed-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 280px;
}

.puppy-breed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.puppy-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.puppy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.puppy-breed-card:hover .puppy-image img {
    transform: scale(1.05);
}

.puppy-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(100%);
}

.puppy-breed-card:hover .puppy-info-overlay {
    opacity: 1;
    transform: translateY(0);
}

.puppy-info-overlay h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
    font-weight: bold;
}

.puppy-info-overlay p {
    color: white;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

.puppy-breed-name {
    padding: 12px 20px;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.puppy-breed-name h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

/* Special Card (Golden Retriever) */
.puppy-breed-card.special-card {
    background: #6a4c93;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.puppy-info-text {
    padding: 30px;
    text-align: center;
}

.puppy-info-text h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
}

.puppy-info-text p {
    color: white;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

/* Statistics Section */
.stats-section {
    background: #2c3e50;
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-section h2,
.enquiry-form-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #6a4c93;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.contact-details h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #6a4c93;
    box-shadow: 0 0 0 3px rgba(106, 76, 147, 0.1);
}

.btn-primary {
    background: #6a4c93;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #5a3d7a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text h2 {
        font-size: 18px;
    }
    
    .services-section,
    .detailed-services {
        padding: 40px 0;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 40px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .page-title h1 {
        font-size: 28px;
    }
    
    .breeder-section h2 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .content-text h2 {
        font-size: 28px;
    }
    
    .why-dog-section .section-title {
        font-size: 28px;
    }
    
    .benefits-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h3 {
        font-size: 18px;
    }
    
    .cta-box .contact-number {
        font-size: 24px;
    }
    
    /* Puppies Available Section Mobile */
    .puppy-breed-card {
        margin-bottom: 20px;
    }
    
    .puppy-image {
        height: 200px;
    }
    
    .puppy-info-overlay {
        padding: 15px;
    }
    
    .puppy-info-overlay h3 {
        font-size: 18px;
    }
    
    .puppy-info-overlay p {
        font-size: 13px;
    }
    
    .puppy-breed-card.special-card {
        min-height: 240px;
    }
    
    .puppy-info-text {
        padding: 20px;
    }
    
    .puppy-info-text h3 {
        font-size: 20px;
    }
    
    .puppy-info-text p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .top-bar .contact-info,
    .top-bar .social-icons {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .hero-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text h2 {
        font-size: 16px;
    }
}
