:root {
	--primary-color: #C8102E;          /* Vibrant cherry red - attention-grabbing */
--text-color: #111111;             /* Dark text for light sections */
--bg-color: #FFFFFF;               /* Clean white base (or switch to dark if preferred) */
--accent-color: #2F2F2F;           /* Charcoal gray for secondary elements */
--secondary-bg: #eaeff8;           /* Warm off-white/beige for cards */
--light-accent: #FFE4E1;           /* Soft misty rose for subtle highlights */
--font-family: 'Arial', sans-serif;
--base-font-size: 1rem;
--line-height: 1.5;
--shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	font-family: var(--font-family);
	font-size: var(--base-font-size);
	line-height: var(--line-height);
	color: var(--text-color);
	background-color: var(--bg-color);
	scroll-behavior: smooth
}

.container {
	max-width: 90%;
	margin: 0 auto;
	padding: 1rem 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--primary-color);
	font-style: normal;
	font-weight: 700;
	text-align: center;
	font-size: 1.7rem !important
}

h1 {
	font-size: 2rem
}

h2 {
	font-size: 1.8rem
}

h3 {
	font-size: 1.6rem
}

h4 {
	font-size: 1.4rem
}

h5 {
	font-size: 1.2rem
}

h6 {
	font-size: 1rem
}

p {
	margin-bottom: 1rem;
	max-width: 100%;
	font-size: 1em
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	transition: var(--transition);
	border: 2px solid var(--primary-color)
}


a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition)
}

a:hover {
	color: var(--accent-color);
	text-decoration: underline
}

button {
	background: var(--primary-color);
	color: var(--bg-color);
	border: none;
	padding: .75rem 1.5rem;
	font-size: 1rem;
	cursor: pointer;
	min-width: 44px;
	min-height: 44px;
	margin: .5rem 0;
	border-radius: 4px;
	transition: var(--transition)
}

button:hover {
	background: var(--accent-color);
	transform: translateY(-2px)
}

.top-nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(to right, var(--bg-color), var(--secondary-bg));
	color: var(--text-color);
	height: 80px;
	padding: 1em
}

.menu {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	margin: 0;
	padding: 0
}

.menu>li {
	margin: 0 1rem
}

.menu-button-container {
	display: none;
	height: 100%;
	width: 30px;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center
}

#menu-toggle {
	display: none
}

.menu-button,
.menu-button::before,
.menu-button::after {
	display: block;
	background-color: var(--primary-color);
	position: absolute;
	height: 5px;
	width: 30px;
	transition: transform 400ms cubic-bezier(.23, 1, .32, 1);
	border-radius: 2px
}

.menu-button::before {
	content: '';
	margin-top: -8px
}

.menu-button::after {
	content: '';
	margin-top: 8px
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
	margin-top: 0;
	transform: rotate(405deg)
}

#menu-toggle:checked+.menu-button-container .menu-button {
	background: #fff0
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
	margin-top: 0;
	transform: rotate(-405deg)
}

.menu {
	z-index: 1001
}

@media (max-width:480px) {
	.menu-button-container {
		display: flex !important
	}

	.top-nav {
		overflow: visible !important
	}
}

@media (max-width:700px) {
	.menu-button-container {
		display: flex
	}

	.menu {
		display: none;
		position: absolute;
		top: 0;
		margin-top: 80px;
		left: 0;
		flex-direction: column;
		width: 100%;
		justify-content: center;
		align-items: center;
		z-index: 1000
	}

	#menu-toggle:checked~.menu {
		display: flex
	}

	#menu-toggle~.menu li {
		height: 0;
		margin: 0;
		padding: 0;
		border: 0;
		transition: height 400ms cubic-bezier(.23, 1, .32, 1)
	}

	#menu-toggle:checked~.menu li {
		border: 1px solid #333;
		height: 2.5em;
		transition: height 400ms cubic-bezier(.23, 1, .32, 1)
	}

	.menu>li {
		display: flex;
		justify-content: center;
		margin: 0;
		padding: .5em 0;
		width: 100%;
		color: #fff;
		background-color: #fff
	}

	.menu>li:not(:last-child) {
		border-bottom: 1px solid #444
	}
}

.video-section video {
	width: 100%;
	border-radius: 8px;
	box-shadow: var(--shadow);
	z-index: 1
}

.intro-section,
.banner-section,
.why-section,
.myths-section,
.offerings-section,
.profiles-section,
.types-section,
.suitable-section,
.pricing-section,
.finest-section {
	background: var(--secondary-bg);
	margin: 1rem 0;
	padding: 1rem;
	border-radius: 8px;
	box-shadow: var(--shadow);
	transition: var(--transition)
}

.feature-grid {
	display: flex;
	flex-direction: row;
	overflow-x: auto;
	gap: 1rem;
	flex-wrap: nowrap
}

.feature {
	min-width: 80vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: var(--bg-color);
	padding: 1rem;
	border-radius: 8px;
	box-shadow: var(--shadow)
}

.myth-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem
}

.myth {
	background: var(--bg-color);
	padding: 1rem;
	border-radius: 8px;
	box-shadow: var(--shadow)
}

.icon {
	font-size: 2rem;
	margin-right: .5rem;
	color: var(--primary-color)
}

.offerings-section {
	border: 2px solid var(--primary-color);
	border-radius: 8px
}

.offerings-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem
}

.offerings-list {
	width: calc(50% - 0.5rem);
	list-style: none;
	padding-left: 0
}

.offerings-list li::before {
	content: "\2714";
	color: var(--primary-color);
	margin-right: .5rem
}

.types-section {
	border: 2px dashed var(--primary-color);
	background: linear-gradient(to bottom, var(--bg-color), var(--secondary-bg));
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: var(--shadow)
}

.types-list {
	counter-reset: type-counter
}

.type-item {
	position: relative;
	padding: 1rem;
	margin-bottom: 1rem;
	border-left: 4px solid var(--primary-color);
	background: var(--bg-color);
	border-radius: 8px;
	box-shadow: var(--shadow);
	transition: var(--transition)
}

.type-item:hover {
	transform: translateX(5px)
}

.profiles-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem
}

.profile-card {
	background: var(--bg-color);
	padding: 1rem;
	border-radius: 8px;
	box-shadow: var(--shadow);
	position: relative;
	transition: var(--transition)
}

.profile-card:hover {
	transform: scale(1.02)
}

.verified {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--primary-color);
	color: var(--bg-color);
	padding: .25rem .5rem;
	font-size: .875rem;
	border-radius: 4px
}

.rating {
	display: block;
	color: gold;
	margin-bottom: .5rem;
	font-size: 1.2rem
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1rem;
	box-shadow: var(--shadow)
}

.pricing-table th,
.pricing-table td {
	border: 1px solid #ddd;
	padding: .75rem;
	text-align: left
}

.pricing-table th {
	background: var(--primary-color);
	color: var(--bg-color)
}

@media (max-width: 768px) {   /* ya max-width: 600px — apne hisaab se */
  .pricing-table {
    display: block;
    overflow-x: auto;
    width: 100%;
    max-width: 100vw;   /* viewport se bahar na jaaye */
  }

  .pricing-table tbody {
    display: table;     /* important line */
  }

  /* cells ko minimum width de sakte ho taaki bahut squeeze na ho */
  .pricing-table th,
  .pricing-table td {
    min-width: 120px;   /* adjust karna padega */
    white-space: nowrap;
  }
}
.highlight {
	background: #E6F4E6;
	padding: 1rem;
	border-left: 4px solid var(--primary-color);
	border-radius: 8px;
	box-shadow: var(--shadow)
}

.footer {
	padding: 1rem 0;
	text-align: center;
	box-shadow: var(--shadow)
}

.locations {
	background: none
}

.locations-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: .5rem;
	list-style: none;
	padding-left: 0
}

.copyright {
	text-align: center;
	margin-top: 2rem
}

@media (min-width:481px) {
	.container {
		max-width: 85%
	}

	.menu-button-container {
		display: none
	}

	.feature-grid {
		overflow-x: hidden;
		flex-wrap: wrap
	}

	.feature {
		min-width: auto;
		width: calc(50% - 0.5rem)
	}

	.myth-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.locations-list {
		grid-template-columns: repeat(2, 1fr)
	}

	.profiles-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.pricing-table th,
	.pricing-table td {
		padding: .75rem
	}
}

@media (min-width:769px) {
	.container {
		max-width: 80%
	}

	.feature {
		width: calc(33.33% - 0.67rem)
	}

	.myth-grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.locations-list {
		grid-template-columns: repeat(4, 1fr)
	}

	.profiles-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media (min-width:1025px) {
	.container {
		max-width: 1200px
	}

	.feature {
		width: calc(25% - 0.8rem)
	}

	.profiles-grid {
		grid-template-columns: repeat(4, 1fr)
	}

	body {
		font-size: 1.125rem
	}

	.copyright {
		text-align: center !important
	}
}

a,
button {
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600
}

:root {
	--contrast-ratio: 7:1
}

.copyright-wrapper {
	background: #E6F4E6
}

.header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: linear-gradient(to right, var(--bg-color), var(--secondary-bg))
}

.button-group {
  display: flex;
  flex-direction: row;
  justify-content: space-around;   /* ya center chahiye to space-around → center / space-between try kar sakte ho */
  gap: 1.5rem;                     /* thoda zyada gap diya taaki accha lage */
  margin-top: 1.5rem;
}

.call-button,
.whatsapp-button {
  background: var(--primary-color);
  color: var(--bg-color);
  
  /* Rectangle banane ke liye changes */
  width: 110px;          /* chaudaai zyada rakhi */
  height: 42px;          /* height thodi kam rakhi (button jaisa feel) */
  border-radius: 10px;   /* thoda rounded corners — pura square nahi chahiye to 6px/8px bhi try kar sakte ho */
  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;              /* icon aur text ke beech space (agar text daal rahe ho) */
  
  transition: var(--transition);
  text-decoration: none;
  font-weight: 500;      /* optional - thoda bold look ke liye */
  font-size: 0.95rem;
}

.call-button:hover,
.whatsapp-button:hover {
  background: var(--accent-color);
  transform: scale(1.08);   /* thoda kam scale kiya taaki rectangle pe natural lage */
}

.call-button img,
.whatsapp-button img {
  width: 22px;
  height: 22px;
}

/* Mobile view */
@media (max-width: 480px) {
  .button-group {
    flex-direction: row;       /* row hi rahega — upar neeche nahi */
    gap: 1rem;                 /* thoda kam gap mobile pe */
    justify-content: center;   /* center kar diya taaki left-right balanced lage */
    margin-top: 1rem;
  }

  .call-button,
  .whatsapp-button {
    width: 90px;               /* mobile pe thoda chhota */
    height: 38px;
    border-radius: 8px;        /* rectangle feel maintain */
    font-size: 0.9rem;
  }

  .call-button img,
  .whatsapp-button img {
    width: 20px;
    height: 20px;
  }
}

.portrait-img {          
  height: 380px;         
  object-fit: cover;     
  object-position: center;
  border-radius: 12px;    
  display: block;         
  background-color: #f0f0f0;
}


@media (max-width: 768px) {
  .portrait-img {
  	width: 400px;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .portrait-img {
  	width: 400px;
    height: 230px;
  }
}
.okluteindia-tags-section {
	background-color: var(--primary-color);
	padding: 2rem 1rem;
	text-align: center
}

.okluteindia-tags-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto
}

.okluteindia-tag-pill {
	background-color: rgb(255 255 255 / .15);
	color: #fff;
	padding: .6rem 1.2rem;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	white-space: nowrap
}

.okluteindia-tag-pill:hover {
	background-color: rgb(255 255 255 / .3);
	transform: translateY(-3px)
}

@media (max-width:768px) {
	.okluteindia-tags-container {
		gap: .8rem;
		padding: 0 .5rem
	}

	.okluteindia-tag-pill {
		font-size: .9rem;
		padding: .5rem 1rem
	}
}

@media (max-width:480px) {
	.okluteindia-tags-section {
		padding: 1.5rem .8rem
	}

	.okluteindia-tag-pill {
		flex: 1 0 45%;
		text-align: center
	}
}

.okluteindia-faq-section {
	background-color: #fff;
	padding: 2rem 1rem;
	max-width: 1200px;
	margin: 2rem auto;
	text-align: left
}

.okluteindia-faq-title {
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 1.5rem
}

.okluteindia-faq-item {
	border: 1px solid var(--primary-color);
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
	background-color: #fff;
	transition: all 0.3s ease
}

.okluteindia-faq-item:hover {
	box-shadow: 0 4px 8px rgb(0 100 0 / .1)
}

.okluteindia-faq-question {
	color: var(--primary-color);
	font-weight: 700;
	padding: 1rem;
	cursor: pointer;
	position: relative;
	margin: 0
}

.okluteindia-faq-question::marker {
	color: var(--primary-color)
}

.okluteindia-faq-answer {
	color: #000;
	padding: 1rem;
	border-top: 1px solid var(--primary-color)
}

@media (max-width:768px) {
	.okluteindia-faq-section {
		padding: 1.5rem .8rem
	}

	.okluteindia-faq-title {
		font-size: 1.5rem
	}

	.okluteindia-faq-question {
		font-size: 1rem;
		padding: .8rem
	}

	.okluteindia-faq-answer {
		font-size: .9rem;
		padding: .8rem
	}
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

#age-verification-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / .85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2147483647 !important;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s;
	overscroll-behavior: contain
}

#age-verification-overlay.visible {
	opacity: 1;
	visibility: visible
}

.age-popup {
	background: #035103;
	color: #fff;
	max-width: 420px;
	width: 100%;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 10px 30px rgb(0 0 0 / .5)
}

.age-popup .title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.2
}

.age-popup p {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 24px;
	opacity: .9
}

.buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px
}

.btn {
	padding: 14px 24px;
	border: none;
	border-radius: 50px;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity .2s;
	min-height: 52px;
	-webkit-tap-highlight-color: #fff0;
	touch-action: manipulation
}

.btn:hover {
	opacity: .9
}

.btn-yes {
	background: linear-gradient(135deg, #00ff88, #00cc66);
	color: #000
}

.btn-no {
	background: linear-gradient(135deg, #ff4466, #cc2233);
	color: #fff
}

.legal-note {
	font-size: 13px;
	opacity: .7;
	margin-bottom: 24px;
	line-height: 1.4
}

.notice-box {
	background: rgb(255 50 50 / .15);
	border: 1px solid #fff;
	border-radius: 12px;
	padding: 16px;
	font-size: 14px;
	line-height: 1.5
}

.notice-box strong {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	color: #fff
}

@media(min-width:480px) {
	.buttons {
		flex-direction: row;
		justify-content: center
	}

	.btn {
		flex: 1;
		max-width: 200px
	}
}

.floating-contact {
	position: fixed;
	right: 16px;
	bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 9999
}

.floating-contact a {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 12px rgb(0 0 0 / .3);
	transition: transform 0.2s ease, box-shadow 0.2s ease
}

.floating-contact img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	border: 0
}

.floating-whatsapp {
	background-color: #25d366
}

.floating-call {
	background-color: #f70a74
}

.floating-contact a:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgb(0 0 0 / .4)
}

@media (max-width:399px) {
	.floating-contact a {
		width: 44px;
		height: 44px
	}

	.floating-contact img {
		width: 20px;
		height: 20px
	}

	.floating-contact {
		right: 12px;
		bottom: 12px;
		gap: 10px
	}
}

@media (min-width:768px) {
	.floating-contact a {
		width: 56px;
		height: 56px
	}

	.floating-contact img {
		width: 28px;
		height: 28px
	}

	.floating-contact {
		right: 24px;
		bottom: 24px;
		gap: 16px
	}
}

@media (min-width:992px) {
	.floating-contact {
		right: 32px;
		bottom: 32px
	}
}

.scroll-to-top {
	position: fixed;
	left: 20px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	background-color: #333;
	color: #fff;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	text-decoration: none;
	font-size: 24px;
	box-shadow: 0 2px 5px rgb(0 0 0 / .3);
	transition: background-color 0.3s;
	z-index: 9998
}

.scroll-to-top:hover {
	background-color: #555
}

@media (max-width:399px) {
	.scroll-to-top {
		width: 36px;
		height: 36px;
		font-size: 20px;
		line-height: 36px;
		left: 16px;
		bottom: 16px
	}
}

@media (min-width:768px) {
	.scroll-to-top {
		width: 48px;
		height: 48px;
		font-size: 28px;
		line-height: 48px;
		left: 24px;
		bottom: 24px
	}
}

.hashtags-section {
	padding: 20px 0;
	background-color: #f8f8f8;
	text-align: center
}

.hashtags-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px
}

.hashtag-pill {
	background-color: #e0e0e0;
	color: #333;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: background-color 0.2s ease
}

.hashtag-pill:hover {
	background-color: #d0d0d0
}

@media (max-width:399px) {
	.hashtag-pill {
		font-size: 12px;
		padding: 6px 12px
	}

	.hashtags-container {
		gap: 8px;
		padding: 0 12px
	}
}

@media (min-width:768px) {
	.hashtag-pill {
		font-size: 16px;
		padding: 10px 20px
	}

	.hashtags-container {
		gap: 12px
	}
}

@media (min-width:992px) {
	.hashtags-container {
		gap: 16px
	}
}

.image-container {
	position: relative;
	display: inline-block;
	overflow: hidden
}

.image-container img.watermarked {
	display: block;
	max-width: 100%;
	height: auto
}

.image-container::after {
	content: "Okluteindia © 2026";
	position: absolute;
	bottom: 10px;
	right: 10px;
	color: rgb(255 255 255 / .6);
	font-size: 18px;
	font-weight: 700;
	text-shadow: 1px 1px 2px rgb(0 0 0 / .5);
	pointer-events: none
}

opacity:.3;
width:100px;
height:100px;
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%) rotate(-45deg)
}

*/ @media (max-width:768px) {
	.image-container::after {
		font-size: 14px
	}
}
.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 80%, #334155 100%);
  color: #e2e8f0;
  padding: 5rem 0 2.5rem;
  margin-top: auto;
  font-family: 'Segoe UI', system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4,
.footer-col h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-logo {
  font-size: 2rem;
  margin: 0 0 1.2rem;
  font-weight: 800;
}

.footer-logo span {
  color: #f97316;
  background: linear-gradient(90deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-col p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a,
.footer-col ul li i {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.35s ease;
}

.footer-col ul li a:hover {
  color: #f97316;
  padding-left: 10px;
  transform: translateX(4px);
}

.footer-col ul li i {
  margin-right: 12px;
  width: 22px;
  color: #94a3b8;
}

/* Attractive Social Buttons */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: none;
  backdrop-filter: blur(4px);
}

.social-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Brand gradients + colors */
.social-btn.facebook    { background: linear-gradient(135deg, #1877f2, #0e5fd9); }
.social-btn.instagram   { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.x           { background: linear-gradient(135deg, #000000, #1a1a1a); color: #ffffff; }
.social-btn.whatsapp    { background: linear-gradient(135deg, #25d366, #128c7e); }
.social-btn.linkedin    { background: linear-gradient(135deg, #0a66c2, #004182); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #94a3b8;
}

.footer-bottom a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #f97316;
}

.copyright a {
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-top {
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .social-links {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 4rem 0 2rem;
  }
  .footer-container {
    padding: 0 1.2rem;
  }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.col-xs-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-xs-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.col-xs-12,
.col-xs-3 {
    padding-left: 10px;
    padding-right: 10px
}